
.category-breadcrumb {
    padding: 20px 0;
    background: #f9f9f9;
    margin-bottom: 40px;
}

.category-breadcrumb ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-breadcrumb ul li {
    font-size: 14px;
    color: var(--color-body);
}

.category-breadcrumb ul li a {
    color: var(--color-body);
    transition: all 0.3s ease;
}

.category-breadcrumb ul li a:hover {
    color: var(--color-primary);
}

.category-breadcrumb ul li i {
    font-size: 12px;
    margin: 0 5px;
}

.category-breadcrumb ul li.active {
    color: var(--color-primary);
    font-weight: 500;
}

/* Kategori Başlık */
.category-header {
    text-align: center;
    margin-bottom: 50px;
}

.category-header .category-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-heading-1);
    margin-bottom: 15px;
}

.category-header .product-count {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-top: 15px;
}

/* Kategori Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1199px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Tek Kategori Kartı */
.single-product-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.single-product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Görsel Alanı */
.single-product-item .product-thumbnail {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: #f5f5f5;
    display: block;
}

.single-product-item .product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.single-product-item:hover .product-thumbnail img {
    transform: scale(1.08);
}

/* Alt İçerik Alanı */
.single-product-item .product-content {
    padding: 28px 25px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.single-product-item .product-content .product-title {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.single-product-item .product-content .product-title:hover {
    color: var(--color-primary);
}

.single-product-item .product-content .product-description {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
}

/* Boş Durum */
.no-products {
    text-align: center;
    padding: 80px 20px;
    background: #f9f9f9;
    border-radius: 12px;
}

.no-products i {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
    display: block;
}

.no-products h4 {
    font-size: 24px;
    color: var(--color-heading-1);
    margin-bottom: 10px;
}

.no-products p {
    color: var(--color-body);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.map-section {
    width: 1905px;
    height: 450px;
}

#map {
    width: 100%;
    height: 100%;
}

.leaflet-control-attribution,
.leaflet-control-zoom {
    display: none;
}

.country-tooltip {
    background: rgba(22, 33, 62, 0.95);
    border: none;
    border-radius: 6px;
    padding: 8px 14px;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.country-tooltip::before {
    border-top-color: rgba(22, 33, 62, 0.95);
}

/* Dil Seçici Stilleri */
.language-switcher {
    position: relative;
    display: inline-block;
    width: 50px!important;
}

.language-switcher .lang-toggle-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;

    width: 50px!important;
}

.language-switcher .lang-toggle-btn:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.language-switcher .lang-toggle-btn i {
    color: #fff;
}

.language-switcher .lang-toggle-btn .fa-globe {
    font-size: 16px;
}

.language-switcher .lang-toggle-btn .fa-chevron-down {
    font-size: 10px;
}

.language-switcher.open .lang-toggle-btn .fa-chevron-down {
    transform: rotate(180deg);
}

.lang-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 8px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 160px;
    z-index: 9999;
    overflow: hidden;
    animation: langDropdownFade 0.2s ease;
}

.lang-dropdown.show {
    display: block;
}

@keyframes langDropdownFade {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    transition: background 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.lang-dropdown a:last-child {
    border-bottom: none;
}

.lang-dropdown a:hover {
    background: #f5f7fa;
}

.lang-dropdown a img {
    width: 22px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Mobil Dil Seçici */
.mobile-lang-switcher {
    padding: 15px 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 15px;
}

.mobile-lang-switcher a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    transition: background 0.2s ease;
}

.mobile-lang-switcher a:hover {
    background: rgba(255, 255, 255, 0.15);
}

.mobile-lang-switcher a img {
    width: 22px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
}
@media (min-width: 768px) {
    .counter-bg {
        height: 300px;
    }
}
@media (max-width: 768px) {
    .rts-counter-up-area.counter-bg {
        height: auto !important;
        padding: 40px 0;
    }

    .rts-counter-up-area .single-counter {
        margin-bottom: 20px;
    }

    #map {
        height: 300px !important;
        width: 100% !important;
    }

    .map-section {
        overflow: hidden;
    }

    .header-one-btn.quote-btn {
        display: none;
    }

    .language-switcher .lang-toggle-btn {
        padding: 5px 10px;
    }
}


     /* Ürün Listeleme Stilleri */
 .rts-products-area {
     padding: 80px 0 100px;
 }

/* Breadcrumb */
.category-breadcrumb {
    padding: 20px 0;
    background: #f9f9f9;
    margin-bottom: 40px;
}

.category-breadcrumb ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-breadcrumb ul li {
    font-size: 14px;
    color: var(--color-body);
}

.category-breadcrumb ul li a {
    color: var(--color-body);
    transition: all 0.3s ease;
}

.category-breadcrumb ul li a:hover {
    color: var(--color-primary);
}

.category-breadcrumb ul li i {
    font-size: 12px;
    margin: 0 5px;
}

.category-breadcrumb ul li.active {
    color: var(--color-primary);
    font-weight: 500;
}

/* Kategori Başlık */
.category-header {
    text-align: center;
    margin-bottom: 50px;
}

.category-header .category-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-heading-1);
    margin-bottom: 15px;
}

.category-header .category-description {
    font-size: 16px;
    color: var(--color-body);
    max-width: 600px;
    margin: 0 auto;
}

.category-header .product-count {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-top: 15px;
}

/* Ürün Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Tek Ürün Kartı */
.single-product-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.single-product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.single-product-item .product-thumbnail {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: #f5f5f5;
}

.single-product-item .product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.single-product-item:hover .product-thumbnail img {
    transform: scale(1.08);
}

.single-product-item .product-thumbnail .product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-primary);
    color: #fff;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.single-product-item .product-thumbnail .quick-view {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.single-product-item:hover .product-thumbnail .quick-view {
    opacity: 1;
    visibility: visible;
}

.single-product-item .product-thumbnail .quick-view a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #fff;
    color: var(--color-primary);
    border-radius: 50%;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.single-product-item .product-thumbnail .quick-view a:hover {
    background: var(--color-primary);
    color: #fff;
}

.single-product-item .product-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.single-product-item .product-content .product-code {
    font-size: 13px;
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.single-product-item .product-content .product-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-heading-1);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.single-product-item .product-content .product-title:hover {
    color: var(--color-primary);
}

.single-product-item .product-content .product-specs {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.single-product-item .product-content .product-specs .spec-item {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 5px 0;
    color: var(--color-body);
}

.single-product-item .product-content .product-specs .spec-item strong {
    color: var(--color-heading-1);
}

.single-product-item .product-content .btn-detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 25px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.single-product-item .product-content .btn-detail:hover {
    background: var(--color-heading-1);
}

/* Boş Ürün Mesajı */
.no-products {
    text-align: center;
    padding: 80px 20px;
    background: #f9f9f9;
    border-radius: 12px;
}

.no-products i {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
}

.no-products h4 {
    font-size: 24px;
    color: var(--color-heading-1);
    margin-bottom: 10px;
}

.no-products p {
    color: var(--color-body);
    margin-bottom: 25px;
}

/* Alt Kategoriler */
.sub-categories-wrapper {
    margin-bottom: 50px;
}

.sub-categories-wrapper .sub-cat-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-heading-1);
}

.sub-categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.sub-categories-list .sub-cat-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #f5f5f5;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 15px;
    color: var(--color-heading-1);
    font-weight: 500;
}

.sub-categories-list .sub-cat-item:hover {
    background: var(--color-primary);
    color: #fff;
}

.sub-categories-list .sub-cat-item i {
    font-size: 18px;
}

/* Pagination */
.products-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.products-pagination .pagination {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.products-pagination .pagination li a,
.products-pagination .pagination li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: #f5f5f5;
    color: var(--color-heading-1);
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.products-pagination .pagination li a:hover,
.products-pagination .pagination li.active span {
    background: var(--color-primary);
    color: #fff;
}

.products-pagination .pagination li.disabled span {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-item + .breadcrumb-item::before {
    color: #666 !important;
    content: "›" !important;
    font-size: 18px;
}

.breadcrumb-item a:hover {
    color: #ffffff !important;
}

/* ===== İÇERİK ALANI ===== */
.content-area h2,
.content-area h3,
.content-area h4 {
    color: #1a1a2e;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}

.content-area p {
    margin-bottom: 20px;
}

.content-area ul,
.content-area ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.content-area li {
    margin-bottom: 8px;
}

.content-area a {
    color: #2563eb;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.content-area a:hover {
    border-bottom-color: #2563eb;
}

.content-area img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 24px 0;
}

.content-area blockquote {
    border-left: 4px solid #1a1a2e;
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
    color: #666;
}

/* ===== BELGELER BÖLÜMÜ ===== */
.docs-wrapper {
    padding: 0 0 80px;
    background: #ffffff;
}

/* Başlık */
.docs-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.docs-header-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(26, 26, 46, 0.2);
}

.docs-header-icon svg {
    color: #ffffff;
}

.docs-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    white-space: nowrap;
}

.docs-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, #1a1a2e, transparent);
    border-radius: 2px;
}

/* Belge Listesi */
.docs-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Belge Kartı */
.doc-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    text-decoration: none;
    transition: all 0.3s;
}

.doc-card:hover {
    border-color: #1a1a2e;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(26, 26, 46, 0.1);
    transform: translateY(-2px);
}

/* Dosya İkonu */
.doc-file-icon {
    width: 52px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex-shrink: 0;
}

.doc-file-icon.pdf {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 1px solid #fecaca;
}
.doc-file-icon.pdf svg { color: #dc2626; }
.doc-file-icon.pdf .doc-ext-label { color: #dc2626; }

.doc-file-icon.word {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 1px solid #bfdbfe;
}
.doc-file-icon.word svg { color: #2563eb; }
.doc-file-icon.word .doc-ext-label { color: #2563eb; }

.doc-file-icon.excel {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1px solid #bbf7d0;
}
.doc-file-icon.excel svg { color: #16a34a; }
.doc-file-icon.excel .doc-ext-label { color: #16a34a; }

.doc-file-icon.other {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 1px solid #e2e8f0;
}
.doc-file-icon.other svg { color: #64748b; }
.doc-file-icon.other .doc-ext-label { color: #64748b; }

.doc-ext-label {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.85;
}

/* Dosya Bilgisi */
.doc-detail {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.doc-name {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.4;
    transition: color 0.2s;
}

.doc-card:hover .doc-name {
    color: #2563eb;
}

.doc-meta {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
}

/* İndir Butonu */
.doc-dl-btn {
    width: 42px;
    height: 42px;
    background: #f1f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.doc-dl-btn svg {
    color: #94a3b8;
    transition: all 0.3s;
}

.doc-card:hover .doc-dl-btn {
    background: #1a1a2e;
    border-color: #1a1a2e;
}

.doc-card:hover .doc-dl-btn svg {
    color: #ffffff;
    animation: dlBounce 0.6s ease;
}

@keyframes dlBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(3px); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .docs-wrapper {
        padding: 0 0 60px;
    }

    .docs-header {
        margin-bottom: 20px;
    }

    .docs-title {
        font-size: 19px;
    }

    .docs-header-icon {
        width: 40px;
        height: 40px;
    }

    .docs-header-icon svg {
        width: 18px;
        height: 18px;
    }

    .doc-card {
        padding: 16px;
        gap: 14px;
    }

    .doc-file-icon {
        width: 46px;
        height: 54px;
    }

    .doc-file-icon svg {
        width: 22px;
        height: 22px;
    }

    .doc-name {
        font-size: 14px;
    }

    .doc-dl-btn {
        width: 38px;
        height: 38px;
    }

    .doc-dl-btn svg {
        width: 17px;
        height: 17px;
    }
}

@media (max-width: 576px) {
    .docs-wrapper {
        padding: 0 0 50px;
    }

    .docs-list {
        gap: 12px;
    }

    .docs-title {
        font-size: 17px;
    }

    .docs-header-icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }

    .docs-header-icon svg {
        width: 16px;
        height: 16px;
    }

    .doc-card {
        padding: 14px;
        gap: 12px;
    }

    .doc-file-icon {
        width: 42px;
        height: 50px;
        border-radius: 8px;
    }

    .doc-file-icon svg {
        width: 20px;
        height: 20px;
    }

    .doc-ext-label {
        font-size: 8px;
    }

    .doc-name {
        font-size: 13px;
    }

    .doc-meta {
        font-size: 11px;
    }

    .doc-dl-btn {
        width: 36px;
        height: 36px;
    }

    .doc-dl-btn svg {
        width: 16px;
        height: 16px;
    }
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #666 !important;
    content: "›" !important;
    font-size: 18px;
}

.breadcrumb-item a:hover {
    color: #ffffff !important;
}

.content-area h2,
.content-area h3,
.content-area h4 {
    color: #1a1a2e;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}

.content-area p {
    margin-bottom: 20px;
}

.content-area ul,
.content-area ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.content-area li {
    margin-bottom: 8px;
}

.content-area a {
    color: #2563eb;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.content-area a:hover {
    border-bottom-color: #2563eb;
}

.content-area img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 24px 0;
}

.content-area blockquote {
    border-left: 4px solid #1a1a2e;
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
    color: #666;
}

:root {
    --primary-color: #1e3a8a;
    --secondary-color: #3b82f6;
    --accent-color: #dc2626;
    --text-dark: #1e293b;
    --text-medium: #475569;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --success-color: #059669;
}

.category-content-wrapper {
    background: var(--bg-light);
    min-height: 60vh;
}

/* ===== KART LİSTESİ ===== */
.faaliyet-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== KART ===== */
.faaliyet-card {
    background: var(--bg-white);
    border-radius: 14px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.faaliyet-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

/* Çift kartları ters çevir */
.faaliyet-card:nth-child(even) {
    direction: rtl;
}

.faaliyet-card:nth-child(even) > * {
    direction: ltr;
}

/* ===== SOL - GÖRSEL ===== */
.faaliyet-visual {
    position: relative;
    min-height: 380px;
    overflow: hidden;
    background: var(--bg-light);
}

.faaliyet-visual > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.faaliyet-card:hover .faaliyet-visual > img {
    transform: scale(1.06);
}

.faaliyet-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.25) 0%, transparent 50%);
    pointer-events: none;
}

/* Küçük Resim */
.faaliyet-thumb {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 130px;
    height: 90px;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.faaliyet-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Sayaç */
.faaliyet-counter {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 14px 18px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.35);
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 2px;
    min-width: 90px;
}

.faaliyet-counter .counter-val,
.faaliyet-counter .counter-plus {
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
}

.faaliyet-counter .counter-text {
    width: 100%;
    font-size: 11px;
    font-weight: 600;
    opacity: 0.9;
    margin-top: 3px;
}

/* ===== SAĞ - İÇERİK ===== */
.faaliyet-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px 30px;
    justify-content: center;
}

/* Badge */
.faaliyet-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.08), rgba(59, 130, 246, 0.08));
    color: var(--primary-color);
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(30, 58, 138, 0.15);
    width: fit-content;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.faaliyet-badge i {
    color: #f59e0b;
    font-size: 11px;
}

/* Başlık */
.faaliyet-heading {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.faaliyet-pre {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faaliyet-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0;
}

/* Açıklama */
.faaliyet-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-medium);
    margin: 0;
}

/* Özellikler */
.faaliyet-checks {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.check-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-light);
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.check-row:hover {
    border-color: var(--primary-color);
    box-shadow: 0 3px 10px rgba(30, 58, 138, 0.08);
    transform: translateX(4px);
}

.check-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon i {
    font-size: 20px;
    color: var(--success-color);
}

.check-row p {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

/* Buton */
.faaliyet-action {
    margin-top: 4px;
}

.faaliyet-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: white;
    padding: 12px 26px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(30, 58, 138, 0.25);
}

.faaliyet-btn:hover {
    background: var(--secondary-color);
    gap: 12px;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(59, 130, 246, 0.3);
    color: white;
}

.faaliyet-btn i {
    font-size: 13px;
    transition: transform 0.3s;
}

.faaliyet-btn:hover i {
    transform: translateX(3px);
}

/* ===== BOŞ DURUM ===== */
.empty-state {
    text-align: center;
    padding: 70px 30px;
    background: var(--bg-white);
    border-radius: 14px;
    border: 2px dashed var(--border-color);
}

.empty-state i {
    font-size: 56px;
    color: var(--text-light);
    margin-bottom: 16px;
    opacity: 0.5;
    display: block;
}

.empty-state p {
    font-size: 16px;
    color: var(--text-medium);
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .faaliyet-list {
        gap: 24px;
    }

    .faaliyet-title {
        font-size: 21px;
    }

    .faaliyet-visual {
        min-height: 340px;
    }
}

@media (max-width: 991px) {
    .category-content-wrapper {
        padding: 40px 0;
    }

    .faaliyet-card {
        grid-template-columns: 1fr;
    }

    /* Çift kartlarda ters yönü kaldır */
    .faaliyet-card:nth-child(even) {
        direction: ltr;
    }

    .faaliyet-visual {
        min-height: 300px;
        max-height: 320px;
    }

    .faaliyet-body {
        padding: 25px;
        text-align: center;
        align-items: center;
    }

    .check-row {
        width: 100%;
        justify-content: center;
    }

    .faaliyet-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .category-content-wrapper {
        padding: 30px 0;
    }

    .faaliyet-list {
        gap: 20px;
    }

    .faaliyet-visual {
        min-height: 240px;
        max-height: 260px;
    }

    .faaliyet-counter {
        padding: 10px 14px;
    }

    .faaliyet-counter .counter-val,
    .faaliyet-counter .counter-plus {
        font-size: 24px;
    }

    .faaliyet-thumb {
        width: 100px;
        height: 70px;
        bottom: 12px;
        right: 12px;
    }

    .faaliyet-body {
        padding: 20px;
        gap: 14px;
    }

    .faaliyet-title {
        font-size: 19px;
    }

    .faaliyet-desc {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .category-content-wrapper {
        padding: 24px 0;
    }

    .faaliyet-list {
        gap: 16px;
    }

    .faaliyet-visual {
        min-height: 200px;
        max-height: 220px;
    }

    .faaliyet-counter {
        padding: 8px 12px;
        min-width: 75px;
        top: 12px;
        left: 12px;
    }

    .faaliyet-counter .counter-val,
    .faaliyet-counter .counter-plus {
        font-size: 20px;
    }

    .faaliyet-counter .counter-text {
        font-size: 10px;
    }

    .faaliyet-thumb {
        width: 85px;
        height: 60px;
        bottom: 10px;
        right: 10px;
        border-width: 2px;
    }

    .faaliyet-body {
        padding: 18px 16px;
        gap: 12px;
    }

    .faaliyet-badge {
        font-size: 10px;
        padding: 5px 12px;
    }

    .faaliyet-pre {
        font-size: 11px;
    }

    .faaliyet-title {
        font-size: 17px;
    }

    .faaliyet-desc {
        font-size: 12px;
    }

    .check-row {
        padding: 9px 12px;
    }

    .check-icon {
        width: 28px;
        height: 28px;
    }

    .check-icon i {
        font-size: 17px;
    }

    .check-row p {
        font-size: 12px;
    }

    .faaliyet-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .empty-state {
        padding: 50px 20px;
    }

    .empty-state i {
        font-size: 44px;
    }

    .empty-state p {
        font-size: 14px;
    }
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #666 !important;
    content: "›" !important;
    font-size: 18px;
}

.breadcrumb-item a:hover {
    color: #ffffff !important;
}

.content-area h2,
.content-area h3,
.content-area h4 {
    color: #1a1a2e;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}

.content-area p {
    margin-bottom: 20px;
}

.content-area ul,
.content-area ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.content-area li {
    margin-bottom: 8px;
}

.content-area a {
    color: #2563eb;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.content-area a:hover {
    border-bottom-color: #2563eb;
}

.content-area img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 24px 0;
}

.content-area blockquote {
    border-left: 4px solid #1a1a2e;
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
    color: #666;
}

.timeline-page {
    --tl-dark: #1a1a2e;
    --tl-text: #444;
    --tl-bg: #f4f6f9;
    --tl-white: #fff;
    --tl-badge: #374151;
    --tl-line: #d1d5db;
    --tl-accent: #2563eb;
    --tl-radius: 12px;
}

/* ===== BAŞLIK ===== */
.timeline-page .tl-header {
    background: var(--tl-dark);
    padding: 50px 0;
    text-align: center;
}

.timeline-page .tl-header__title {
    color: var(--tl-white);
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.timeline-page .tl-header__sub {
    color: #9ca3af;
    font-size: 15px;
    margin: 0;
}

/* ===== ANA ALAN ===== */
.timeline-page .tl-section {
    background: var(--tl-bg);
    padding: 70px 0 90px;
}

.timeline-page .tl-wrapper {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
}

/* ===== DİKEY ÇİZGİ ===== */
.timeline-page .tl-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--tl-line);
    transform: translateX(-50%);
    z-index: 0;
}

/* ===== TIMELINE ITEM ===== */
.timeline-page .tl-item {
    display: grid;
    grid-template-columns: 1fr 70px 1fr;
    position: relative;
    margin-bottom: 70px;
    align-items: start;
}

.timeline-page .tl-item:last-child {
    margin-bottom: 0;
}

/* ===== MARKER (Badge) - Ortada ===== */
.timeline-page .tl-marker {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    justify-content: center;
    z-index: 2;
    padding-top: 14px;
}

.timeline-page .tl-marker__badge {
    width: 46px;
    height: 46px;
    background: var(--tl-badge);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--tl-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.timeline-page .tl-marker__badge svg {
    color: var(--tl-white);
}

/* ===== KOLONLAR ===== */
.timeline-page .tl-side--left {
    grid-column: 1;
    grid-row: 1;
}

.timeline-page .tl-side--right {
    grid-column: 3;
    grid-row: 1;
}

/* ===== RESİM + YIL ETİKETİ ===== */
.timeline-page .tl-img-wrap {
    position: relative;
    border-radius: var(--tl-radius);
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    line-height: 0;
}

.timeline-page .tl-img-wrap img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.timeline-page .tl-item:hover .tl-img-wrap img {
    transform: scale(1.02);
}

/* Yıl etiketi - resmin sol üstünde */
.timeline-page .tl-img-year {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--tl-badge);
    color: var(--tl-white);
    padding: 5px 18px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    line-height: 1.4;
}

/* ===== METİN İÇERİK ===== */
.timeline-page .tl-content {
    padding: 10px 5px;
}

.timeline-page .tl-content p {
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--tl-text);
    margin: 0 0 12px 0;
}

.timeline-page .tl-content p:last-child {
    margin-bottom: 0;
}

.timeline-page .tl-content__desc {
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--tl-text);
}

.timeline-page .tl-content__desc p {
    margin: 0 0 12px 0;
}

.timeline-page .tl-content strong {
    color: var(--tl-dark);
    font-weight: 700;
}

/* ===== DETAY LİNKİ ===== */
.timeline-page .tl-content__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    color: var(--tl-accent);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s, color 0.3s;
}

.timeline-page .tl-content__link:hover {
    gap: 10px;
    color: var(--tl-dark);
}

.timeline-page .tl-content__link svg {
    flex-shrink: 0;
    transition: transform 0.3s;
}

.timeline-page .tl-content__link:hover svg {
    transform: translateX(3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .timeline-page .tl-header {
        padding: 40px 0;
    }

    .timeline-page .tl-header__title {
        font-size: 30px;
    }

    .timeline-page .tl-section {
        padding: 50px 0 65px;
    }

    .timeline-page .tl-line {
        left: 28px;
    }

    .timeline-page .tl-item {
        display: flex;
        flex-direction: column;
        margin-bottom: 50px;
        padding-left: 70px;
    }

    .timeline-page .tl-marker {
        position: absolute;
        left: 0;
        top: 0;
        padding-top: 14px;
    }

    .timeline-page .tl-side--left,
    .timeline-page .tl-side--right {
        padding: 0;
    }

    .timeline-page .tl-item--left .tl-side--left { order: 1; }
    .timeline-page .tl-item--left .tl-side--right { order: 2; margin-top: 16px; }
    .timeline-page .tl-item--right .tl-side--right { order: 1; }
    .timeline-page .tl-item--right .tl-side--left { order: 2; margin-top: 16px; }

    .timeline-page .tl-img-wrap img {
        height: 230px;
    }
}

@media (max-width: 768px) {
    .timeline-page .tl-header {
        padding: 35px 0;
    }

    .timeline-page .tl-header__title {
        font-size: 26px;
    }

    .timeline-page .tl-section {
        padding: 40px 0 55px;
    }

    .timeline-page .tl-line {
        left: 22px;
    }

    .timeline-page .tl-item {
        padding-left: 60px;
        margin-bottom: 42px;
    }

    .timeline-page .tl-marker__badge {
        width: 40px;
        height: 40px;
    }

    .timeline-page .tl-marker__badge svg {
        width: 15px;
        height: 15px;
    }

    .timeline-page .tl-img-year {
        font-size: 15px;
        padding: 4px 14px;
        top: 12px;
        left: 12px;
    }

    .timeline-page .tl-content p,
    .timeline-page .tl-content__desc {
        font-size: 13.5px;
    }

    .timeline-page .tl-img-wrap img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .timeline-page .tl-header {
        padding: 28px 0;
    }

    .timeline-page .tl-header__title {
        font-size: 22px;
    }

    .timeline-page .tl-section {
        padding: 30px 0 45px;
    }

    .timeline-page .tl-line {
        left: 18px;
        width: 2px;
    }

    .timeline-page .tl-item {
        padding-left: 52px;
        margin-bottom: 35px;
    }

    .timeline-page .tl-marker__badge {
        width: 34px;
        height: 34px;
        border-width: 3px;
    }

    .timeline-page .tl-marker__badge svg {
        width: 13px;
        height: 13px;
    }

    .timeline-page .tl-img-year {
        font-size: 13px;
        padding: 3px 12px;
        top: 10px;
        left: 10px;
    }

    .timeline-page .tl-content p,
    .timeline-page .tl-content__desc {
        font-size: 13px;
        line-height: 1.7;
    }

    .timeline-page .tl-img-wrap img {
        height: 175px;
    }

    .timeline-page .tl-content__link {
        font-size: 13px;
    }
}