        /* === SAMPLES PAGE STYLES === */
        body {
            font-family: 'Cabin Condensed', sans-serif;
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.5;
            background-image: url('../../../assets/background/samples.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 43, 57, 0.12);
            z-index: -1;
        }

        body.dark-mode::before {
            background: var(--dm-bg);
        }

        .samples-hero {
            background: var(--bg);
            padding: 30px 0 20px;
            text-align: center;
            color: var(--text);
            position: relative;
            overflow: hidden;
            margin-bottom: 30px;
            border-bottom: 1px solid var(--border);
        }

        body.dark-mode .samples-hero {
            background: var(--dm-bg);
            color: var(--dm-text);
            border-bottom-color: var(--dm-border);
        }

        .samples-hero h1 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 10px;
            position: relative;
            z-index: 2;
            color: var(--primary);
        }

        body.dark-mode .samples-hero h1 {
            color: var(--dm-primary);
        }

        .samples-hero p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            color: var(--text-muted);
            position: relative;
            z-index: 2;
        }

        body.dark-mode .samples-hero p {
            color: var(--dm-gray);
        }

        .content-wrapper {
            display: flex;
            gap: 30px;
            position: relative;
            align-items: flex-start;
            margin-bottom: 40px;
        }

        main {
            flex: 1;
        }

        /* === SEARCH AND FILTERS === */
        .samples-filters {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            gap: 15px;
            background: var(--bg);
            padding: 15px 20px;
            border-radius: 6px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--border);
        }

        body.dark-mode .samples-filters {
            background: var(--dm-card);
            border-color: var(--dm-border);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        .filter-selectors {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            flex: 1;
        }

        .filter-group {
            display: flex;
            flex-direction: column;
            gap: 5px;
            min-width: 200px;
        }

        .filter-group label {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        body.dark-mode .filter-group label {
            color: var(--dm-gray);
        }

        .filter-select {
            padding: 10px 12px;
            border: 1px solid var(--border);
            border-radius: 4px;
            background: var(--bg);
            color: var(--text);
            font-size: 14px;
            transition: all 0.2s ease;
        }

        .filter-select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(1, 112, 185, 0.1);
        }

        body.dark-mode .filter-select {
            background: var(--dm-card);
            border-color: var(--dm-border);
            color: var(--dm-text);
        }

        body.dark-mode .filter-select:focus {
            border-color: var(--dm-primary);
            box-shadow: 0 0 0 2px rgba(3, 164, 228, 0.2);
        }

        .filter-actions {
            display: flex;
            gap: 10px;
            align-items: flex-end;
        }

        .apply-filters {
            background: var(--primary);
            color: var(--text-light);
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .apply-filters:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
            box-shadow: 0 2px 5px rgba(1, 112, 185, 0.2);
        }

        body.dark-mode .apply-filters {
            background: var(--dm-primary);
        }

        .clear-filters {
            background: var(--bg-soft);
            color: var(--text-muted);
            border: 1px solid var(--border);
            padding: 9px 16px;
            border-radius: 4px;
            cursor: pointer;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .clear-filters:hover {
            background: var(--border);
            transform: translateY(-1px);
        }

        body.dark-mode .clear-filters {
            background: var(--dm-bg);
            border-color: var(--dm-border);
            color: var(--dm-gray);
        }

        /* === SAMPLES GRID === */
        .samples-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
            margin-bottom: 30px;
        }

        .sample-card {
            background: var(--bg);
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            position: relative;
            border: 1px solid var(--border);
            height: 280px;
        }

        body.dark-mode .sample-card {
            background: var(--dm-card);
            border-color: var(--dm-border);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        .sample-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        body.dark-mode .sample-card:hover {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
        }

        .card-header {
            padding: 18px 18px 0;
        }

        .card-header h2 {
            margin: 0 0 12px 0;
            font-size: 17px;
            line-height: 1.3;
        }

        .card-header h2 a {
            color: var(--text);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        body.dark-mode .card-header h2 a {
            color: var(--dm-text);
        }

        .card-header h2 a:hover {
            color: var(--primary);
        }

        body.dark-mode .card-header h2 a:hover {
            color: var(--dm-primary);
        }

        .card-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 12px;
        }

        .meta-badge {
            background: var(--primary-light);
            color: white;
            padding: 3px 8px;
            border-radius: 3px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        body.dark-mode .meta-badge {
            background: var(--dm-primary);
        }

        .meta-badge.subject {
            background: var(--primary);
        }

        .meta-badge.service {
            background: #28a745;
        }

        .card-content {
            padding: 0 18px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .card-excerpt {
            color: var(--text-muted);
            line-height: 1.5;
            font-size: 13px;
            flex: 1;
            margin-bottom: 15px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
        }

        body.dark-mode .card-excerpt {
            color: var(--dm-gray);
        }

        .card-details {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
            padding-top: 12px;
            border-top: 1px solid var(--border);
            font-size: 11px;
            color: var(--text-muted);
        }

        body.dark-mode .card-details {
            border-top-color: var(--dm-border);
            color: var(--dm-gray);
        }

        .detail-item {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .detail-item i {
            font-size: 11px;
        }

        .word-count {
            background: var(--bg-soft);
            padding: 2px 6px;
            border-radius: 3px;
            font-weight: 600;
        }

        body.dark-mode .word-count {
            background: var(--dm-bg);
        }

        .view-sample {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--primary);
            color: var(--text-light);
            padding: 8px 16px;
            border-radius: 3px;
            text-decoration: none;
            font-weight: 600;
            font-size: 13px;
            transition: all 0.2s ease;
            gap: 6px;
        }

        .view-sample:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
            box-shadow: 0 2px 5px rgba(1, 112, 185, 0.2);
        }

        body.dark-mode .view-sample {
            background: var(--dm-primary);
        }

        /* === PAGINATION === */
        .pagination {
            display: flex;
            justify-content: center;
            margin: 30px 0;
            flex-wrap: wrap;
            gap: 6px;
        }

        .pagination-button {
            background: var(--bg);
            border: 1px solid var(--border);
            color: var(--text);
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 3px;
            cursor: pointer;
            transition: all 0.2s ease;
            font-weight: 600;
            font-size: 13px;
            text-decoration: none;
        }

        body.dark-mode .pagination-button {
            background: var(--dm-card);
            border-color: var(--dm-border);
            color: var(--dm-text);
        }

        .pagination-button.active,
        .pagination-button:hover {
            background: var(--primary);
            color: var(--text-light);
            border-color: var(--primary);
            transform: translateY(-1px);
            box-shadow: 0 2px 5px rgba(1, 112, 185, 0.2);
        }

        body.dark-mode .pagination-button.active,
        body.dark-mode .pagination-button:hover {
            background: var(--dm-primary);
            box-shadow: 0 2px 5px rgba(3, 164, 228, 0.3);
        }

        .pagination-button.disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none !important;
        }

        /* === LATEST SAMPLES SECTION === */
        .latest-samples {
            background: var(--bg-soft);
            padding: 40px 0;
            margin-top: 50px;
            position: relative;
            z-index: 1;
        }

        body.dark-mode .latest-samples {
            background: var(--dm-bg);
        }

        .latest-samples h2 {
            text-align: center;
            font-size: 28px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        .latest-samples h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 2px;
            background: var(--primary);
            border-radius: 1px;
        }

        body.dark-mode .latest-samples h2 {
            color: var(--dm-text);
        }

        body.dark-mode .latest-samples h2::after {
            background: var(--dm-primary);
        }

        .latest-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .latest-sample {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            background: var(--bg);
            border-radius: 4px;
            transition: all 0.2s ease;
            border: 1px solid var(--border);
        }

        .latest-sample:hover {
            transform: translateY(-2px);
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
        }

        body.dark-mode .latest-sample {
            background: var(--dm-card);
            border-color: var(--dm-border);
        }

        body.dark-mode .latest-sample:hover {
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
        }

        .latest-sample-content {
            flex: 1;
        }

        .latest-sample-content h3 {
            margin: 0 0 4px 0;
            font-size: 14px;
            line-height: 1.3;
        }

        .latest-sample-content h3 a {
            color: var(--text);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        body.dark-mode .latest-sample-content h3 a {
            color: var(--dm-text);
        }

        .latest-sample-content h3 a:hover {
            color: var(--primary);
        }

        body.dark-mode .latest-sample-content h3 a:hover {
            color: var(--dm-primary);
        }

        .latest-sample-meta {
            font-size: 11px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        body.dark-mode .latest-sample-meta {
            color: var(--dm-gray);
        }

        .latest-sample-badge {
            background: var(--primary);
            color: white;
            padding: 1px 6px;
            border-radius: 2px;
            font-size: 9px;
            font-weight: 600;
            text-transform: uppercase;
        }

        body.dark-mode .latest-sample-badge {
            background: var(--dm-primary);
        }

        /* === NO RESULTS MESSAGE === */
        .no-results {
            text-align: center;
            padding: 50px 20px;
            grid-column: 1 / -1;
        }

        .no-results i {
            font-size: 50px;
            color: var(--text-muted);
            margin-bottom: 15px;
            opacity: 0.7;
        }

        .no-results h3 {
            font-size: 22px;
            color: var(--text);
            margin-bottom: 10px;
            font-weight: 700;
        }

        body.dark-mode .no-results h3 {
            color: var(--dm-text);
        }

        .no-results p {
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
            font-size: 15px;
        }

        body.dark-mode .no-results p {
            color: var(--dm-gray);
        }

        /* === LOADING INDICATOR === */
        .loading {
            display: none;
            text-align: center;
            padding: 30px;
            grid-column: 1 / -1;
            margin: 25px 0;
        }

        .loading-spinner {
            border: 2px solid #f3f3f3;
            border-top: 2px solid var(--primary);
            border-radius: 50%;
            width: 35px;
            height: 35px;
            animation: spin 1s linear infinite;
            margin: 0 auto 12px;
        }

        body.dark-mode .loading-spinner {
            border: 2px solid var(--dm-bg);
            border-top: 2px solid var(--dm-primary);
        }

        .loading p {
            font-size: 15px;
            color: var(--text-muted);
            font-weight: 600;
        }

        body.dark-mode .loading p {
            color: var(--dm-gray);
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        /* === RESPONSIVE STYLES === */
        @media (max-width: 1200px) {
            .content-wrapper {
                flex-direction: column;
            }

            .samples-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }

        @media (max-width: 992px) {
            .samples-hero h1 {
                font-size: 32px;
            }

            .samples-hero p {
                font-size: 16px;
            }

            .samples-filters {
                flex-direction: column;
                align-items: stretch;
            }

            .filter-selectors {
                flex-direction: column;
            }

            .filter-group {
                min-width: 100%;
            }

            .filter-actions {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .samples-hero {
                padding: 25px 0 15px;
            }

            .samples-hero h1 {
                font-size: 28px;
            }

            .samples-hero p {
                font-size: 15px;
            }

            .samples-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .sample-card {
                height: auto;
                min-height: 250px;
            }

            .latest-samples h2 {
                font-size: 24px;
            }

            .latest-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 0 15px;
            }

            .samples-hero h1 {
                font-size: 24px;
            }

            .card-header h2 {
                font-size: 15px;
            }

            .pagination-button {
                width: 32px;
                height: 32px;
                font-size: 12px;
            }

            .latest-samples {
                padding: 30px 0;
            }

            .latest-samples h2 {
                font-size: 22px;
            }
        }