﻿@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('/assets/fonts/PlusJakartaSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('/assets/fonts/PlusJakartaSans-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('/assets/fonts/PlusJakartaSans-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f8fafc;
    color: #0f172a;
    -webkit-font-smoothing: antialiased;
}
/* --- TEMEL SIFIRLAMA --- */
.tk-header-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* --- MASAÜSTÜ HEADER --- */
.tk-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

    .tk-header.scrolled {
        height: 75px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    }

.tk-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
}

/* Logo */
.tk-logo {
    font-size: 1.4rem;
    font-weight: 900;
    color: #0f172a;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.tk-logo img{
    height:45px;
}

    .tk-logo span {
        color: #0d9488;
    }

/* Navigasyon Listesi */
.tk-nav {
    display: flex;
    gap: 32px;
    list-style: none;
    height: 100%;
}

.tk-nav-item {
    display: flex;
    align-items: center;
    position: static;
}
/* ÖNEMLİ: Static kalmalı */

.tk-nav-link {
    text-decoration: none;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: 0.3s;
    padding: 10px 0;
}

.tk-nav-item:hover .tk-nav-link {
    color: #0d9488;
}

/* --- MEGA MENU (EKRAN GÖRÜNTÜSÜNDEKİ DARALMAYI ÇÖZEN YAPI) --- */
.tk-mega {
    position: absolute;
    top: 100%;
    left: 24px; /* Container paddingine hizalı */
    right: 24px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.15);
    border: 1px solid #f1f5f9;
    padding: 32px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.tk-nav-item:hover .tk-mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

/* Mega Sol Kart */
.tk-mega-aside {
    background: #0f172a;
    border-radius: 20px;
    padding: 32px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

    .tk-mega-aside h3 {
        font-size: 1.4rem;
        font-weight: 800;
        margin-bottom: 12px;
        position: relative;
        z-index: 2;
    }

    .tk-mega-aside p {
        font-size: 0.85rem;
        color: #94a3b8;
        line-height: 1.6;
        position: relative;
        z-index: 2;
    }

    .tk-mega-aside::after {
        content: "";
        position: absolute;
        bottom: -20px;
        right: -20px;
        width: 100px;
        height: 100px;
        background: #0d9488;
        filter: blur(50px);
        opacity: 0.4;
    }

/* Mega Sağ Grid */
.tk-mega-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.tk-mega-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: 16px;
    background: #f8fafc;
    text-decoration: none;
    border: 1px solid transparent;
    transition: 0.3s;
}

    .tk-mega-card:hover {
        background: #fff;
        border-color: #0d9488;
        box-shadow: 0 10px 20px rgba(0,0,0,0.04);
        transform: translateY(-2px);
    }

.tk-m-icon {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.tk-m-info h4 {
    color: #0f172a;
    font-size: 1rem;
    margin-bottom: 2px;
}

.tk-m-info p {
    color: #64748b;
    font-size: 0.8rem;
}

/* Sağ Taraf Aksiyonlar */
.tk-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.tk-support {
    text-align: right;
}

    .tk-support small {
        display: block;
        font-size: 0.65rem;
        color: #64748b;
        font-weight: 800;
        text-transform: uppercase;
    }

    .tk-support a {
        text-decoration: none;
        color: #0f172a;
        font-weight: 800;
        font-size: 1rem;
    }

.tk-whatsapp-btn {
    width: 42px;
    height: 42px;
    background: #25D366;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

    .tk-whatsapp-btn:hover {
        transform: scale(1.1);
    }

.tk-burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

    .tk-burger span {
        width: 26px;
        height: 2.5px;
        background: #0f172a;
        border-radius: 2px;
    }

/* --- MOBİL MENÜ --- */
.tk-mob-overlay {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 10000;
    transform: translateX(100%);
    transition: 0.5s cubic-bezier(0.8, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

    .tk-mob-overlay.active {
        transform: translateX(0);
    }

.tk-mob-header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f1f5f9;
}

.tk-mob-close {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.tk-mob-body {
    padding: 32px 24px;
    flex: 1;
    overflow-y: auto;
}

.tk-mob-link {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #f1f5f9;
}

.tk-mob-sub {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
    background: #f8fafc;
    border-radius: 16px;
}

    .tk-mob-sub.active {
        max-height: 400px;
        padding: 12px 20px;
        margin-top: 10px;
    }

    .tk-mob-sub a {
        display: block;
        padding: 12px 0;
        color: #64748b;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
    }

@media (max-width: 1150px) {
    .tk-nav, .tk-support {
        display: none;
    }

    .tk-burger {
        display: flex;
    }

    .tk-header {
        height: 70px;
    }
}
.tk-hero {
        position: relative;
        width: 100%;
        height: 80vh; /* Tam ekran yüksekliği */
        display: flex;
        align-items: center;
        overflow: hidden;
        background: #000;
    }

    /* Video Arka Plan */
    .tk-hero-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .tk-hero-video video {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Videonun ekranı tam kaplamasını sağlar */
    }

    .tk-hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            to bottom, 
            rgba(15, 23, 42, 0.7) 0%, 
            rgba(15, 23, 42, 0.4) 50%, 
            rgba(15, 23, 42, 0.8) 100%
        );
        z-index: 2;
    }

    /* İçerik Konumlandırma */
    .tk-hero-container {
        position: relative;
        z-index: 3;
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 24px;
        width: 100%;
    }

    .tk-hero-content {
        max-width: 800px;
        animation: fadeInUp 1s ease forwards;
    }

    .tk-hero-badge {
        display: inline-block;
        padding: 8px 16px;
        background: rgba(13, 148, 136, 0.2);
        border: 1px solid rgba(13, 148, 136, 0.3);
        color: #5eead4;
        border-radius: 100px;
        font-weight: 700;
        font-size: 0.85rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 24px;
        backdrop-filter: blur(5px);
    }

    .tk-hero-title {
        color: #fff;
        font-size: clamp(2.5rem, 5vw, 3.5rem); /* Ekran boyutuna göre dinamik font */
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 24px;
    }

    .tk-hero-title span {
        color: #0d9488;
        background: linear-gradient(to right, #0d9488, #5eead4);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .tk-hero-description {
        color: #cbd5e1;
        font-size: 1.2rem;
        line-height: 1.6;
        margin-bottom: 40px;
        max-width: 600px;
    }

    /* Butonlar */
    .tk-hero-actions {
        display: flex;
        gap: 20px;
        align-items: center;
    }

    .tk-btn-primary {
        padding: 16px 32px;
        background: #0d9488;
        color: #fff;
        text-decoration: none;
        border-radius: 12px;
        font-weight: 700;
        transition: all 0.3s ease;
        box-shadow: 0 10px 20px rgba(13, 148, 136, 0.3);
    }

    .tk-btn-primary:hover {
        background: #0f766e;
        transform: translateY(-3px);
    }

    .tk-btn-outline {
        padding: 16px 32px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: #fff;
        text-decoration: none;
        border-radius: 12px;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
        backdrop-filter: blur(5px);
    }

    .tk-btn-outline:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: #fff;
    }

    /* Scroll İkonu */
    .tk-hero-scroll {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
    }

    .tk-hero-scroll .mouse {
        width: 26px;
        height: 42px;
        border: 2px solid rgba(255, 255, 255, 0.4);
        border-radius: 20px;
        position: relative;
    }

    .tk-hero-scroll .mouse::before {
        content: "";
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 8px;
        background: #0d9488;
        border-radius: 2px;
        animation: scrollAnim 2s infinite;
    }

    /* Animasyonlar */
    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @keyframes scrollAnim {
        0% { transform: translate(-50%, 0); opacity: 1; }
        100% { transform: translate(-50%, 20px); opacity: 0; }
    }

    /* Mobil Uyumluluk */
    @media (max-width: 768px) {
        .tk-hero-content { text-align: center; }
        .tk-hero-actions { flex-direction: column; }
        .tk-hero-description { margin: 0 auto 30px; }
        .tk-btn-primary, .tk-btn-outline { width: 100%; justify-content: center; }
    }
/* Mobil Buton Düzenlemesi */
@media (max-width: 768px) {
    .tk-hero {
        height: 100vh;
    }
    .tk-hero-content {
        text-align: center;
        padding-top: 60px; /* Header ile çakışmaması için üst boşluk */
    }

    .tk-hero-actions {
        display: flex;
        flex-direction: column; /* Butonları alt alta getirir */
        gap: 16px; /* Butonlar arasındaki dikey boşluk */
        width: 100%;
        max-width: 400px; /* Butonların çok fazla yayılmasını önler */
        margin: 0 auto; /* Merkeze hizalar */
    }

    .tk-btn-primary, .tk-btn-outline {
        width: 100%; /* Butonlar genişliği tam kaplasın */
        justify-content: center;
        padding: 18px 32px; /* Daha kolay tıklanması için dikeyde büyüttük */
        font-size: 1rem;
    }

    .tk-hero-title {
        font-size: 2.2rem; /* Mobilde başlığı biraz daha optimize ettik */
        margin-bottom: 16px;
    }

    .tk-hero-description {
        font-size: 1rem;
        margin-bottom: 32px;
        padding: 0 10px;
    }
}
.tk-ticker-wrapper {
    width: 100%;
    background: #0f172a;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 999;
    overflow: hidden; /* Sayfa sağa kaymaz! */
}

    /* Cam Efekti Veren Kenar Gölgeleri */
    .tk-ticker-wrapper::before,
    .tk-ticker-wrapper::after {
        content: "";
        position: absolute;
        top: 0;
        width: 150px;
        height: 100%;
        z-index: 5;
        pointer-events: none;
    }

    .tk-ticker-wrapper::before {
        left: 0;
        background: linear-gradient(to right, #0f172a, transparent);
    }

    .tk-ticker-wrapper::after {
        right: 0;
        background: linear-gradient(to left, #0f172a, transparent);
    }

.tk-ticker-container {
    display: flex;
    width: max-content;
}

.tk-ticker-content {
    display: flex;
    animation: tickerScroll 35s linear infinite;
}

.tk-ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 45px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

    .tk-ticker-item .label {
        color: #94a3b8;
        font-size: 0.75rem;
        font-weight: 800;
        letter-spacing: 0.5px;
    }

    .tk-ticker-item .value {
        color: #f8fafc;
        font-weight: 700;
        font-size: 0.95rem;
    }

    /* Trend Renkleri */
    .tk-ticker-item .trend {
        font-size: 0.75rem;
        font-weight: 700;
        padding: 2px 6px;
        border-radius: 4px;
    }

        .tk-ticker-item .trend.up {
            color: #22c55e; /* Canlı Yeşil */
            background: rgba(34, 197, 94, 0.1);
        }

        .tk-ticker-item .trend.down {
            color: #ef4444; /* Canlı Kırmızı */
            background: rgba(239, 68, 68, 0.1);
        }

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Hover'da durma */
.tk-ticker-wrapper:hover .tk-ticker-content {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .tk-ticker-wrapper {
        padding: 10px 0;
    }

    .tk-ticker-item {
        padding: 0 25px;
    }
}
.tk-news-section {
    padding: 80px 0;
    background: #fdfdfd;
}

.tk-news-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Düzeltilen Buton Tasarımı */
.tk-news-header {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Dikeyde tam hizalama */
    margin-bottom: 40px;
    gap: 20px;
}

.tk-news-main-title {
    color: #0f172a;
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0;
}

.tk-news-subtitle {
    color: #0d9488;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.2px;
    display: block;
    margin-bottom: 8px;
}

.tk-news-all-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.tk-icon-circle {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d9488;
    transition: all 0.3s ease;
}

.tk-news-all-btn:hover .tk-icon-circle {
    background: #0d9488;
    color: #fff;
    transform: rotate(-45deg); /* Hafif bir ok hareketi */
}

.tk-news-all-btn:hover span {
    color: #0d9488;
}

/* Grid & Eşitleme Yapısı */
.tk-news-grid {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.tk-news-featured {
    flex: 1.2;
    background: #fff;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.tk-news-list {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
}

.tk-news-item {
    flex: 1;
    background: #fff;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.3s;
}

.tk-news-img-wrap {
    height: 280px;
    background: #0f172a url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&q=80&w=1200') center/cover;
    position: relative;
}

.tk-news-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #0d9488;
    color: #fff;
    padding: 6px 14px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.7rem;
    z-index: 2;
}

.tk-news-featured-info {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tk-news-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.tk-news-cat {
    background: #f1f5f9;
    color: #64748b;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
}

.tk-news-date {
    color: #94a3b8;
    font-size: 0.8rem;
}

.tk-news-f-title {
    font-size: 1.6rem;
    color: #0f172a;
    margin-bottom: 12px;
    font-weight: 800;
}

.tk-news-f-text {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: auto;
}

.tk-news-link {
    color: #0d9488;
    text-decoration: none;
    font-weight: 800;
    margin-top: 20px;
    display: block;
}

.tk-news-item h4 {
    color: #0f172a;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 10px 0;
    line-height: 1.4;
}

.tk-news-inline-link {
    color: #0d9488;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
}

.tk-news-item:hover {
    border-color: #0d9488;
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}

/* Mobil */
@media (max-width: 992px) {
    .tk-news-grid {
        flex-direction: column;
    }

    .tk-news-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .tk-news-all-btn {
        align-self: flex-start;
    }
}
.tk-projects-section {
    padding: 100px 0;
    background: #f8fafc;
}

.tk-projects-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Tasarımı */
.tk-projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.tk-projects-tag {
    color: #0d9488;
    background: rgba(13, 148, 136, 0.1);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tk-projects-h2 {
    color: #0f172a;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 15px 0 10px 0;
}

.tk-projects-p {
    color: #64748b;
    font-size: 1.1rem;
}

/* Buton Düzeltmesi */
.tk-projects-all-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #0f172a;
    font-weight: 700;
    background: #fff;
    padding: 8px 8px 8px 24px;
    border-radius: 100px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.tk-projects-icon {
    width: 44px;
    height: 44px;
    background: #0f172a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.tk-projects-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

    .tk-projects-all-btn:hover .tk-projects-icon {
        background: #0d9488;
        transform: rotate(-45deg);
    }

/* Proje Grid Yapısı */
.tk-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 20px 0;
}

/* Kart Ana Stil */
.tk-project-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
}

    .tk-project-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(13, 148, 136, 0.1);
        border-color: #0d9488;
    }

/* Üst Kısım: Status ve Lokasyon */
.tk-project-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tk-project-status {
    font-size: 12px;
    font-weight: 700;
    color: #0d9488;
    background: rgba(13, 148, 136, 0.08);
    padding: 4px 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #0d9488;
    border-radius: 50%;
    display: inline-block;
}

.tk-project-loc {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

/* Orta Kısım: İsim ve Skor */
.tk-project-name {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}

.tk-project-score-wrap {
    background: #f8fafc;
    padding: 12px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #f1f5f9;
}

.tk-score-box {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.current-score {
    font-size: 20px;
    font-weight: 900;
    color: #0d9488;
}

.total-divider {
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
}

.tk-score-label {
    font-size: 10px;
    font-weight: 800;
    color: #475569;
    letter-spacing: 1px;
}

/* Alt Kısım: Fiyat ve Link */
.tk-project-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.tk-footer-item {
    display: flex;
    flex-direction: column;
}

.f-label {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 700;
    text-transform: uppercase;
}

.f-value {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
}

.tk-project-detay {
    color: #0d9488;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: 0.2s;
}

    .tk-project-detay:hover {
        padding-right: 5px;
    }

/* Mobil Uyum */
@media (max-width: 992px) {
    .tk-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .tk-projects-grid {
        grid-template-columns: 1fr;
    }
}

/* Grade Renkleri */
.grade-aplus {
    color: #0d9488;
}

.grade-a {
    color: #10b981;
}

.grade-bplus {
    color: #3b82f6;
}

/* Footer */
.tk-project-footer {
    margin-top: auto;
    padding-top: 25px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.f-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.f-value {
    color: #0f172a;
    font-weight: 800;
    font-size: 0.95rem;
}

.tk-project-detay {
    color: #0d9488;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    transition: 0.3s;
}

    .tk-project-detay:hover {
        padding-right: 10px;
    }

/* Mobil */
@media (max-width: 1024px) {
    .tk-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tk-projects-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .tk-projects-grid {
        grid-template-columns: 1fr;
    }

    .tk-projects-h2 {
        font-size: 1.8rem;
    }
}

.tk-fon-section {
    padding: 100px 0;
    background: #fcfdfe;
}

.tk-fon-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Başlık Alanı */
.tk-fon-header {
    text-align: center;
    margin-bottom: 70px;
}

.tk-fon-pretitle {
    color: #0d9488;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.tk-fon-title {
    font-size: 2.8rem;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 20px;
}

.tk-fon-desc {
    color: #64748b;
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.tk-highlight {
    color: #0d9488;
    font-weight: 700;
}

/* Rol Kartları */
.tk-fon-roles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.tk-role-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: 0.3s;
}

    .tk-role-card:hover {
        border-color: #0d9488;
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    }

.tk-role-icon {
    width: 64px;
    height: 64px;
    background: #f0fdfa;
    color: #0d9488;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.tk-role-card h3 {
    color: #0f172a;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.tk-role-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Pipeline (Akış) Tasarımı */
.tk-pipeline-wrap {
    background: #0f172a;
    padding: 60px 40px;
    border-radius: 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.tk-pipeline-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #0d9488;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-align: center;
}

.tk-pipeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 20px;
}

    /* Bağlantı Çizgisi */
    .tk-pipeline::before {
        content: "";
        position: absolute;
        top: 25px;
        left: 50px;
        right: 50px;
        height: 2px;
        background: rgba(255,255,255,0.1);
        z-index: 1;
    }

.tk-step {
    flex: 1;
    position: relative;
    z-index: 2;
    text-align: center;
}

.tk-step-num {
    width: 50px;
    height: 50px;
    background: #1e293b;
    border: 2px solid #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-weight: 800;
    color: #94a3b8;
    transition: 0.3s;
}

.tk-step.active .tk-step-num {
    background: #0d9488;
    border-color: #0d9488;
    color: #fff;
    box-shadow: 0 0 20px rgba(13, 148, 136, 0.5);
}

.tk-step h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #f8fafc;
}

.tk-step p {
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.4;
    padding: 0 10px;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .tk-fon-roles {
        grid-template-columns: 1fr;
    }

    .tk-pipeline {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

        .tk-pipeline::before {
            display: none;
        }

    .tk-step {
        display: flex;
        text-align: left;
        gap: 20px;
    }

    .tk-step-num {
        margin: 0;
        flex-shrink: 0;
    }
}
.tk-news-section {
    padding: 80px 0;
    background: #fff;
}

.tk-news-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.tk-news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.tk-news-category-tag {
    color: #0d9488;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.tk-news-main-title {
    font-size: 2.2rem;
    color: #0f172a;
    font-weight: 800;
    margin-top: 10px;
}

.tk-news-view-all {
    color: #0f172a;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid #0d9488;
    padding-bottom: 4px;
}

.tk-news-layout-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 30px;
}

.tk-news-featured-card {
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    overflow: hidden;
    transition: 0.3s ease;
}

    .tk-news-featured-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
    }

.tk-news-featured-image {
    height: 280px;
    background: #f8fafc;
    position: relative;
}

.tk-news-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #0d9488;
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8rem;
}

.tk-news-featured-body {
    padding: 30px;
}

.tk-news-date {
    color: #94a3b8;
    font-size: 0.85rem;
}

.tk-news-title {
    font-size: 1.6rem;
    color: #0f172a;
    margin: 12px 0;
    font-weight: 800;
}

.tk-news-read-btn {
    color: #0d9488;
    text-decoration: none;
    font-weight: 800;
}

.tk-news-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tk-news-sidebar-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    transition: 0.3s;
}

    .tk-news-sidebar-item:hover {
        border-color: #0d9488;
        background: #f0fdfa;
    }

.tk-news-type-indicator {
    width: 90px;
    padding: 5px;
    text-align: center;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
}

.type-regulation {
    background: #eff6ff;
    color: #3b82f6;
}

.type-market {
    background: #f0fdf4;
    color: #22c55e;
}

.type-project {
    background: #fff7ed;
    color: #f97316;
}

/* --- REPORTS SECTION STYLES --- */
.tk-reports-section {
    padding: 100px 0;
    background: #0f172a;
}

.tk-reports-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.tk-reports-wrapper-box {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.tk-reports-heading {
    font-size: 2.2rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
}

.tk-reports-description {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.6;
}

.tk-reports-quick-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.tk-reports-stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #0d9488;
}

.tk-reports-stat-label {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 600;
}

.tk-reports-files-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tk-reports-file-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.3s;
}

    .tk-reports-file-card:hover {
        background: rgba(255,255,255,0.07);
        border-color: #0d9488;
    }

.tk-reports-file-icon {
    color: #0d9488;
}

.tk-reports-file-tag {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
}

.tk-reports-file-info h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-top: 4px;
    font-weight: 700;
}

.tk-reports-file-info {
    flex: 1;
}

.tk-reports-download-link {
    background: #fff;
    color: #0f172a;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.85rem;
    transition: 0.3s;
}

    .tk-reports-download-link:hover {
        background: #0d9488;
        color: #fff;
    }

/* Mobile */
@media (max-width: 992px) {
    .tk-news-layout-grid, .tk-reports-wrapper-box {
        grid-template-columns: 1fr;
    }
}
.tk-footer {
    background: #0f172a; /* Marka koyu rengi */
    color: #f8fafc;
    padding: 80px 0 40px 0;
    border-top: 4px solid #0d9488;
}

.tk-footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Section */
.tk-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.tk-logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.tk-dot {
    color: #0d9488;
}

.tk-footer-tagline {
    color: #94a3b8;
    margin-top: 10px;
    font-size: 0.95rem;
}

.tk-footer-newsletter h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.tk-newsletter-form {
    display: flex;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    padding: 6px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

    .tk-newsletter-form input {
        background: transparent;
        border: none;
        padding: 10px 15px;
        color: #fff;
        outline: none;
        flex: 1;
    }

    .tk-newsletter-form button {
        background: #0d9488;
        color: #fff;
        border: none;
        padding: 10px 25px;
        border-radius: 8px;
        font-weight: 700;
        cursor: pointer;
        transition: 0.3s;
    }

        .tk-newsletter-form button:hover {
            background: #0f766e;
        }

.tk-footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.05);
    margin: 40px 0;
}

/* Links Grid */
.tk-footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.tk-footer-col h5 {
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tk-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .tk-footer-col ul li {
        margin-bottom: 12px;
    }

        .tk-footer-col ul li a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.95rem;
            transition: 0.3s;
        }

            .tk-footer-col ul li a:hover {
                color: #0d9488;
                padding-left: 5px;
            }

.tk-footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    font-size: 0.95rem;
}

.tk-footer-contact svg {
    color: #0d9488;
}

/* Bottom Section */
.tk-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.tk-footer-legal {
    color: #64748b;
    font-size: 0.85rem;
    display: flex;
    gap: 30px;
    align-items: center;
}

.tk-legal-links {
    display: flex;
    gap: 20px;
}

    .tk-legal-links a {
        color: #64748b;
        text-decoration: none;
    }

        .tk-legal-links a:hover {
            color: #0d9488;
        }

.tk-footer-social {
    display: flex;
    gap: 15px;
}

    .tk-footer-social a {
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #fff;
        transition: 0.3s;
        border: 1px solid rgba(255,255,255,0.05);
    }

        .tk-footer-social a:hover {
            background: #0d9488;
            transform: translateY(-3px);
        }

/* Mobil */
@media (max-width: 992px) {
    .tk-footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .tk-footer-links-grid {
        grid-template-columns: 1fr;
    }

    .tk-footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .tk-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .tk-legal-links {
        flex-wrap: wrap;
    }
}
.tk-eco-section {
    padding: 100px 0;
    background: #f8fafc; /* Mevcut sitemizle uyumlu hafif gri fon */
}

.tk-eco-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.tk-eco-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.tk-eco-badge {
    background: rgba(13, 148, 136, 0.1);
    color: #0d9488;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tk-eco-main-title {
    font-size: 2.5rem;
    color: #0f172a;
    font-weight: 800;
    margin: 15px 0 10px 0;
}

.tk-eco-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 500px;
}

.tk-eco-directory-btn {
    background: #fff;
    color: #0f172a;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 14px;
    font-weight: 700;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}

    .tk-eco-directory-btn:hover {
        background: #0f172a;
        color: #fff;
        border-color: #0f172a;
    }

/* Network Grid */
.tk-eco-network-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.tk-eco-card {
    background: #fff;
    border-radius: 24px;
    position: relative;
    padding: 32px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

    .tk-eco-card:hover {
        transform: translateY(-10px);
        border-color: #0d9488;
        box-shadow: 0 20px 40px rgba(13, 148, 136, 0.1);
    }

    /* Özel Vurgulu Kart (Yazılım Sağlayıcıları vb. için) */
    .tk-eco-card.card-highlight {
        background: linear-gradient(145deg, #ffffff 0%, #f0fdfa 100%);
    }

.tk-eco-icon-box {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    color: #0d9488;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 24px;
    transition: 0.3s;
}

.tk-eco-card:hover .tk-eco-icon-box {
    background: #0d9488;
    color: #fff;
    transform: rotate(-5deg) scale(1.1);
}

.tk-eco-content h3 {
    font-size: 1.4rem;
    color: #0f172a;
    margin-bottom: 12px;
    font-weight: 800;
}

.tk-eco-content p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.tk-eco-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.tk-eco-count {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.9rem;
}

.tk-eco-status {
    font-size: 0.75rem;
    font-weight: 800;
    color: #0d9488;
    background: rgba(13, 148, 136, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
}

.tk-eco-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Mobil */
@media (max-width: 768px) {
    .tk-eco-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .tk-eco-main-title {
        font-size: 2rem;
    }
}
.tk-m-icon svg {
    width: 24px;
    height: 24px;
    color: #0d9488; /* Turkuaz tonu */
    transition: transform 0.3s ease;
}

.tk-mega-card:hover .tk-m-icon svg {
    transform: scale(1.1);
    color: #0f172a; /* Hover'da koyu renk */
}
/* 1. DIŞ KAPSAYICI: Sayfanın sağa kaymasını engeller */
    .tk-ticker-outer-wrapper {
        width: 100%;
        background: #0f172a;
        padding: 12px 0;
        position: relative;
        z-index: 99999; /* Slider'ın (genelde 10-100 arasıdır) çok üstünde olmalı */
        overflow: hidden; /* Yatay taşmayı kesin keser */
        /* SİHİRLİ DOKUNUŞ: Üst taraftaki taşmalara (tooltip) izin verir */
        clip-path: inset(-100px 0px -100px 0px); 
    }

    /* 2. İÇ KONTEYNER: Kayan içeriği tutar */
    .tk-ticker-inner-container {
        display: flex;
        width: max-content;
        position: relative;
    }

    .tk-ticker-scroll-content {
        display: flex;
        animation: tk-ticker-anim 30s linear infinite;
    }

    /* 3. TICKER ÖĞELERİ */
    .tk-ticker-item {
        position: relative;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 0 40px;
        cursor: pointer;
    }

    .tk-ticker-label { color: #94a3b8; font-size: 11px; font-weight: 800; text-transform: uppercase; }
    .tk-ticker-value { color: #ffffff; font-weight: 700; font-size: 14px; }
    .tk-ticker-trend.up { color: #22c55e; font-size: 12px; font-weight: 800; }

    /* 4. TOOLTIP TASARIMI: Yukarı doğru açılır */
.tk-ticker-tooltip {
    position: absolute;
    bottom: 160%; /* Ticker'ın üzerinde konumlanır */
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 220px;
    background: #ededed;
    border: 1px solid #0d9488;
    border-radius: 10px;
    padding: 0 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100000;
    pointer-events: none;
}

    /* Görünürlük Tetikleyici */
    .tk-ticker-item:hover .tk-ticker-tooltip {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }


.tk-tooltip-title {
    display: block;
    color: #0d9488;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 5px;
}

#tk-tooltip-text {
    color: #cbd5e1;
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
    white-space: normal;
}

.tk-tooltip-arrow {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: #0d9488;
}

    /* 5. ANİMASYON VE HOVER DURDURMA */
    @keyframes tk-ticker-anim {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    .tk-ticker-outer-wrapper:hover .tk-ticker-scroll-content {
        animation-play-state: paused;
    }

    /* Slider çakışmasını engellemek için slider konteynerine bunu ekleyin */
    .slider-main-class { /* Kendi slider class isminizle değiştirin */
        z-index: 1 !important;
        position: relative;
    }

/* Fiyat Kutusu Tasarımı */
.tk-price-box {
    display: flex;
    align-items: baseline;
    gap: 4px;
    background: rgba(13, 148, 136, 0.1); /* Hafif turkuaz arka plan */
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px solid rgba(13, 148, 136, 0.2);
}

.tk-ticker-value {
    color: #ffffff;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: -0.5px;
}

.tk-currency {
    color: #0d9488;
    font-weight: 700;
    font-size: 13px;
}

.tk-unit {
    color: #64748b; /* Slate-500 rengi */
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 2px;
}

/* Trend göstergesini daha şık yapalım */
.tk-ticker-trend {
    font-size: 11px !important;
    padding: 2px 6px;
    border-radius: 4px;
}

    .tk-ticker-trend.up {
        background: rgba(34, 197, 94, 0.1);
        color: #22c55e;
    }
    #tk-floating-tooltip {
    position: fixed;
    display: none;
    z-index: 1000000;
    background: #1e293b;
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #0d9488;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    pointer-events: auto; /* Mobilde içindeki metin kaydırılabilsin */
}

/* Mobil için özel dokunuşlar */
@media (max-width: 768px) {
    #tk-floating-tooltip {
        text-align: center; /* Mobilde metni ortala */
        pointer-events: auto; /* Tıklanabilir olsun */
    }
    
    .tk-tooltip-title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    #tk-tooltip-text {
        font-size: 14px;
        line-height: 1.6;
    }
}
/* Section Genel - Saf Beyaz */
.tk-neleryapar-section {
    background-color: #ffffff;
    padding: 100px 20px;
}

.tk-neleryapar-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* Başlık Grubu */
.tk-neleryapar-header {
    text-align: center;
    margin-bottom: 70px;
}

.tk-neleryapar-subtitle {
    color: #0d9488; /* Kurumsal Turkuaz */
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.tk-neleryapar-title {
    color: #1e293b; /* Koyu Lacivert/Gri metin */
    font-size: clamp(24px, 5vw, 42px);
    font-weight: 800;
    margin: 0;
    letter-spacing: -1.5px;
}

.tk-neleryapar-divider {
    width: 60px;
    height: 5px;
    background: #0d9488;
    margin: 25px auto 0;
    border-radius: 10px;
}

/* Grid Yapısı */
.tk-neleryapar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Kart Tasarımı - Beyaz Tema Uyumlu */
.tk-neleryapar-card {
    background: #f8fafc; /* Çok açık gri/mavi */
    border: 1px solid #e2e8f0;
    padding: 45px 35px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

    .tk-neleryapar-card:hover {
        transform: translateY(-12px);
        background: #ffffff;
        border-color: #0d9488;
        box-shadow: 0 25px 50px -12px rgba(13, 148, 136, 0.15); /* Turkuaz gölge */
    }

    /* Öne Çıkan Kart */
    .tk-neleryapar-card.active {
        background: #ffffff;
        border-bottom: 4px solid #0d9488;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

/* SVG İkon Kutusu */
.tk-neleryapar-icon-box {
    width: 64px;
    height: 64px;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: #0d9488;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

    .tk-neleryapar-icon-box svg {
        width: 30px;
        height: 30px;
    }

/* TK Score İkonu Özel */
.tk-score-bg {
    background: #0d9488;
    color: #ffffff;
    border: none;
}

.tk-score-text {
    font-size: 20px;
    font-weight: 900;
}

/* Kart İçerik Metinleri */
.tk-neleryapar-card-title {
    color: #0f172a;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    z-index: 2;
}

.tk-neleryapar-card-text {
    color: #64748b; /* Daha yumuşak gri */
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    z-index: 2;
}

/* Arka Plan Dekoratif Vektör - Beyaz Temada Daha Belirgin */
.tk-neleryapar-bg-svg {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 140px;
    height: 140px;
    color: rgba(13, 148, 136, 0.05);
    z-index: 1;
    pointer-events: none;
    transition: 0.5s;
}

.tk-neleryapar-card:hover .tk-neleryapar-bg-svg {
    color: rgba(13, 148, 136, 0.1);
    transform: scale(1.15);
}

/* %100 MOBİL UYUM */
@media (max-width: 1024px) {
    .tk-neleryapar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tk-neleryapar-section {
        padding: 60px 15px;
    }

    .tk-neleryapar-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tk-neleryapar-title {
        font-size: 28px;
    }

    .tk-neleryapar-card {
        padding: 35px 25px;
        text-align: center;
        align-items: center;
    }
}
.tkscore-content-section {
    background-color: #f8fafc; /* Hafif Gri Arka Plan */
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

.tkscore-content-container {
    max-width: 1300px;
    margin: 0 auto;
}

.tkscore-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* Sol Taraf: Metinler */
.tkscore-content-info {
    flex: 1;
}

.tkscore-content-badge {
    color: #0d9488;
    background: rgba(13, 148, 136, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 25px;
}

.tkscore-content-title {
    color: #0f172a;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.tkscore-content-description {
    color: #475569;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 550px;
}

/* Alt Maddeler */
.tkscore-content-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.tkscore-content-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tkscore-content-feature-icon {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d9488;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.tkscore-content-feature-icon svg {
    width: 20px;
    height: 20px;
}

.tkscore-content-feature-text {
    color: #1e293b;
    font-weight: 600;
    font-size: 15px;
}

/* Link/Buton */
.tkscore-content-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0d9488;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
}

.tkscore-content-link:hover {
    gap: 15px;
    border-color: #0d9488;
}

.tkscore-content-link svg {
    width: 20px;
}

/* Sağ Taraf: Görsel Kart */
.tkscore-content-visual {
    flex: 0.8;
    position: relative;
    display: flex;
    justify-content: center;
}

.tkscore-content-main-card {
    background: #ffffff;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 40px 80px -20px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    text-align: center;
}

.tkscore-content-score-circle {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
}

.tkscore-content-circle-bg {
    fill: none;
    stroke: #f1f5f9;
    stroke-width: 8;
}

.tkscore-content-circle-progress {
    fill: none;
    stroke: #0d9488;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 45; /* Skor değeri kadar boşluk */
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

.tkscore-content-score-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tkscore-content-number {
    display: block;
    font-size: 64px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
}

.tkscorescore-content-total {
    color: #94a3b8;
    font-weight: 700;
}

.tkscore-content-status-badge {
    background: #0d9488;
    color: white;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
}

.tkscore-content-deco-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.05) 0%, rgba(255,255,255,0) 100%);
    transform: translate(-50%, -50%) rotate(-10deg);
    z-index: 1;
    border-radius: 60px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .tkscore-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }
    .tkscore-content-description {
        margin-left: auto;
        margin-right: auto;
    }
    .tkscore-content-features {
        justify-items: center;
    }
}

@media (max-width: 768px) {
    .tkscore-content-section {
        padding: 80px 20px;
    }
    .tkscore-content-features {
        grid-template-columns: 1fr;
    }
    .tkscore-content-main-card {
        padding: 40px 20px;
    }
}
/* Section Temeli */
.tk-banks-section {
    background-color: #f1f5f9; /* Hafif gri-mavi geçişi */
    padding: 100px 20px;
}

.tk-banks-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* Header Tasarımı */
.tk-banks-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.tk-banks-badge {
    color: #0d9488;
    background: rgba(13, 148, 136, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.tk-banks-h2 {
    color: #0f172a;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 15px 0;
    letter-spacing: -1px;
}

.tk-banks-p {
    color: #64748b;
    font-size: 17px;
    max-width: 600px;
    margin: 0;
}

/* "Tüm Bankalar" Butonu */
.tk-banks-all-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #0f172a;
    font-weight: 700;
    transition: 0.3s;
}

.tk-banks-icon-circle {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d9488;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.tk-banks-all-btn:hover .tk-banks-icon-circle {
    background: #0d9488;
    color: #ffffff;
    transform: rotate(-45deg);
}

/* Grid ve Kartlar */
.tk-banks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tk-bank-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

    .tk-bank-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
        border-color: #0d9488;
    }

/* Banka Logoları ve İsimleri */
.tk-bank-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.tk-bank-logo-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    color: white;
}

.tk-bg-ziraat {
    background: #e11d48;
}

.tk-bg-garanti {
    background: #15803d;
}

.tk-bg-is {
    background: #1d4ed8;
}

.tk-bank-name {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

.tk-credit-type {
    font-size: 13px;
    color: #0d9488;
    font-weight: 600;
}

/* İstatistik Satırları */
.tk-bank-stats {
    margin-bottom: 30px;
    background: #f8fafc;
    padding: 20px;
    border-radius: 16px;
}

.tk-stat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

    .tk-stat-row:last-child {
        margin-bottom: 0;
    }

.stat-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.stat-divider {
    flex-grow: 1;
    border-bottom: 1px dashed #e2e8f0;
    margin: 0 10px;
}

.stat-value {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
}

    .stat-value.highlighted {
        color: #0d9488;
    }

/* Aksiyon Butonu */
.tk-bank-action-btn {
    margin-top: auto;
    background: #f1f5f9;
    color: #1e293b;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
}

.tk-bank-card:hover .tk-bank-action-btn {
    background: #0d9488;
    color: white;
}

/* MOBİL UYUM */
@media (max-width: 1024px) {
    .tk-banks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tk-banks-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .tk-banks-grid {
        grid-template-columns: 1fr;
    }

    .tk-banks-h2 {
        font-size: 28px;
    }
}
/* Section Genel Ayarları */
.tk-cta-creative {
    position: relative;
    background: #ffffff;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Arka Plan Glow Efektleri */
.tk-glow-top {
    position: absolute;
    top: -15%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.12) 0%, transparent 70%);
    filter: blur(60px);
}

.tk-glow-bottom {
    position: absolute;
    bottom: -15%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.05) 0%, transparent 70%);
    filter: blur(60px);
}

.tk-cta-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

/* Morfing (Şekil Değiştiren) Küre */
.tk-visual-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tk-morphing-sphere {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0d9488;
    opacity: 0.1;
    filter: blur(15px);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphing 8s infinite alternate ease-in-out;
}

.tk-floating-icon {
    position: relative;
    animation: floating 4s infinite ease-in-out;
}

/* Tipografi ve Renk Geçişleri */
.tk-main-heading {
    font-size: clamp(25px, 4vw, 40px);
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -2px;
    margin-bottom: 25px;
    margin-top:0;
    color: #0f172a;
}

.tk-fade-up {
    display: block;
    animation: fadeInUp 0.8s forwards;
}

.tk-gradient-text {
    display: block;
    background: linear-gradient(90deg, #0f172a, #0d9488, #0f172a);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 4s linear infinite;
}

.tk-description {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

/* Portal Buton Tasarımı */
.tk-portal-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: #0f172a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

    .tk-portal-button:hover {
        background: #0d9488;
        transform: scale(1.05) translateY(-5px);
        box-shadow: 0 20px 40px rgba(13, 148, 136, 0.3);
    }

    .tk-portal-button svg {
        transition: transform 0.3s ease;
    }

    .tk-portal-button:hover svg {
        transform: translateX(8px);
    }

/* Animasyonlar */
@keyframes morphing {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }

    100% {
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    }
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textShine {
    to {
        background-position: 200% center;
    }
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .tk-cta-creative {
        padding: 80px 15px;
    }

    .tk-main-heading {
        letter-spacing: -1px;
    }

    .tk-portal-button {
        justify-content: center;
    }
}
.tk-yakinda-wrapper {
    margin-top: 91px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #f8fafc;
    overflow: hidden;
    padding: 40px 20px;
}

/* Arka Plandaki Yumuşak Işık */
.tk-yakinda-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.07) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
    z-index: 1;
}

.tk-yakinda-content {
    position: relative;
    z-index: 10;
    max-width: 650px;
    text-align: center;
}

/* Kreatif Portal Animasyonu */
.tk-yakinda-visual {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.tk-yakinda-ring-1, .tk-yakinda-ring-2, .tk-yakinda-ring-3 {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(13, 148, 136, 0.1);
    border-top: 2px solid #0d9488;
}

.tk-yakinda-ring-1 {
    width: 100%;
    height: 100%;
    animation: rotate 4s linear infinite;
}

.tk-yakinda-ring-2 {
    width: 80%;
    height: 80%;
    animation: rotate 3s linear infinite reverse;
    opacity: 0.6;
}

.tk-yakinda-ring-3 {
    width: 60%;
    height: 60%;
    animation: rotate 2s linear infinite;
    opacity: 0.3;
}

.tk-yakinda-icon {
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

/* Metin Alanları */
.tk-yakinda-badge {
    background: rgba(13, 148, 136, 0.08);
    color: #0d9488;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 20px;
}

.tk-yakinda-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.tk-yakinda-p {
    font-size: 17px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* İlerleme Çubuğu */
.tk-yakinda-progress-container {
    max-width: 400px;
    margin: 0 auto 30px;
}

.tk-yakinda-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.tk-yakinda-progress-bar {
    width: 100%;
    height: 8px;
    background: #f1f5f9;
    border-radius: 10px;
    overflow: hidden;
}

.tk-yakinda-progress-fill {
    width: 85%;
    height: 100%;
    background: linear-gradient(90deg, #0d9488, #14b8a6);
    border-radius: 10px;
    animation: fillProgress 3s ease-out forwards;
}

.tk-yakinda-footer-note {
    font-size: 14px;
    color: #94a3b8;
    font-style: italic;
}

/* Keyframes */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

@keyframes fillProgress {
    from {
        width: 0;
    }

    to {
        width: 85%;
    }
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .tk-yakinda-wrapper {
        min-height: 60vh;
    }

    .tk-yakinda-visual {
        width: 150px;
        height: 150px;
    }
}
/* Ana Kapsayıcı ve Arka Plan */
.tk-hakkimizda-main {
    background-color: #020617; /* Derin uzay mavisi */
    color: #f8fafc;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Arka Plan Işık Oyunları */
.tk-hakkimizda-ambient {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.15) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 1;
}

.tk-hakkimizda-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 2;
}

.tk-hakkimizda-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 10;
}

/* Hero Bölümü */
.tk-hakkimizda-hero {
    text-align: center;
    margin-bottom: 120px;
}

.tk-hakkimizda-label {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(13, 148, 136, 0.1);
    border: 1px solid rgba(13, 148, 136, 0.3);
    border-radius: 50px;
    color: #2dd4bf;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 30px;
}

.tk-hakkimizda-big-title {
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -4px;
    margin-bottom: 30px;
}

.tk-text-gradient {
    background: linear-gradient(to right, #2dd4bf, #0d9488, #5eead4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tk-hakkimizda-lead {
    font-size: clamp(18px, 2vw, 22px);
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto;
}

/* Split Bölümü (Misyon/Vizyon) */
.tk-hakkimizda-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 150px;
}

/* Animasyonlu Portal Objesi */
.tk-hakkimizda-portal {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.tk-portal-ring {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(13, 148, 136, 0.2);
    border-top-color: #2dd4bf;
    border-radius: 50%;
    animation: spin 4s linear infinite;
}

.tk-portal-core {
    position: absolute;
    inset: 40px;
    background: radial-gradient(circle, #0d9488 0%, transparent 80%);
    border-radius: 50%;
    filter: blur(20px);
    animation: breathe 3s ease-in-out infinite;
}

.tk-hakkimizda-box {
    margin-bottom: 50px;
}

    .tk-hakkimizda-box h3 {
        font-size: 28px;
        color: #ffffff;
        margin-bottom: 15px;
        border-left: 4px solid #0d9488;
        padding-left: 20px;
    }

    .tk-hakkimizda-box p {
        color: #94a3b8;
        font-size: 17px;
        line-height: 1.7;
    }

/* Değerler Kartları */
.tk-hakkimizda-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 150px;
}

.tk-value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 24px;
    transition: all 0.4s ease;
}

    .tk-value-card:hover {
        background: rgba(13, 148, 136, 0.05);
        border-color: rgba(13, 148, 136, 0.3);
        transform: translateY(-10px);
    }

.tk-value-icon {
    width: 50px;
    height: 50px;
    color: #2dd4bf;
    margin-bottom: 25px;
}

.tk-value-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Manifesto Kartı */
.tk-hakkimizda-footer-box {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.2) 0%, rgba(15, 23, 42, 0.5) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(13, 148, 136, 0.2);
    border-radius: 40px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tk-footer-content {
    max-width: 700px;
}

    .tk-footer-content h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .tk-footer-content p {
        font-size: 18px;
        color: #cbd5e1;
    }

/* Animasyonlar */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Mobil */
@media (max-width: 992px) {
    .tk-hakkimizda-big-title {
        font-size: clamp(40px, 6w, 80px);
        font-weight: 900;
        line-height: 1;
        letter-spacing: -2px;
        margin-bottom: 30px;
    }
    .tk-hakkimizda-split, .tk-hakkimizda-values {
        grid-template-columns: 1fr;
        margin-bottom:0;
    }

    .tk-hakkimizda-footer-box {
        flex-direction: column;
        text-align: center;
    }
}
/* Ana Section Ayarları */
.tk-iletisim-ultra {
    background: #030303;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}

/* Arka Plan Dekorasyonları */
.tk-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #0d9488, transparent);
    filter: blur(80px);
    opacity: 0.2;
    z-index: 0;
}

.tk-shape-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -100px;
}

.tk-shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
}

.tk-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 10;
}

/* Grid Düzeni */
.tk-grid-creative {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 80px;
    align-items: center;
}

/* Sol Taraf: Tipografi */
.tk-floating-label {
    background: rgba(45, 212, 191, 0.1);
    color: #2dd4bf;
    padding: 6px 15px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 25px;
}

.tk-main-title {
    font-size: clamp(50px, 8vw, 90px);
    line-height: 0.85;
    font-weight: 900;
    letter-spacing: -5px;
    margin-bottom: 30px;
}

    .tk-main-title span {
        color: #2dd4bf;
        text-shadow: 0 0 30px rgba(45, 212, 191, 0.3);
    }

.tk-desc {
    color: #888;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.tk-contact-minimal {
    margin-bottom: 40px;
}

.tk-min-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.tk-min-icon {
    color: #2dd4bf;
}

.tk-min-item a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: 0.3s;
}

    .tk-min-item a:hover {
        color: #2dd4bf;
        padding-left: 10px;
    }

.tk-address-tag {
    background: rgba(255,255,255,0.03);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #0d9488;
    max-width: 300px;
}

    .tk-address-tag strong {
        display: block;
        font-size: 12px;
        color: #666;
        margin-bottom: 5px;
    }

/* Sağ Taraf: Glass Form */
.tk-form-glass-layer {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px;
    border-radius: 40px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.4);
}

.tk-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tk-input-field {
    position: relative;
    margin-bottom: 35px;
}

    .tk-input-field input, .tk-input-field textarea {
        width: 100%;
        background: transparent;
        border: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 10px 0;
        color: #fff;
        font-size: 16px;
        outline: none;
    }

    .tk-input-field label {
        position: absolute;
        left: 0;
        top: 10px;
        color: #555;
        transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        pointer-events: none;
    }

    /* Floating Label Animasyonu */
    .tk-input-field input:focus ~ label,
    .tk-input-field input:valid ~ label,
    .tk-input-field textarea:focus ~ label,
    .tk-input-field textarea:valid ~ label {
        top: -20px;
        font-size: 12px;
        color: #2dd4bf;
        font-weight: 700;
    }

/* Gönder Butonu - Kreatif Style */
.tk-btn-creative {
    display: flex;
    align-items: center;
    background: #fff;
    color: #000;
    padding: 10px 10px 10px 30px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.4s;
    overflow: hidden;
}

.tk-btn-arrow {
    background: #0d9488;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    font-size: 20px;
    transition: 0.4s;
}

.tk-btn-creative:hover {
    background: #2dd4bf;
}

    .tk-btn-creative:hover .tk-btn-arrow {
        transform: rotate(-45deg);
        background: #000;
    }

.tk-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.tk-check-area p {
    font-size: 11px;
    color: #555;
    max-width: 200px;
}

.tk-check-area a {
    color: #888;
}

/* Responsive */
@media (max-width: 992px) {
   
   
    .tk-main-title {
        font-size: clamp(40px, 6vw, 70px);
        line-height: 1;
        font-weight: 900;
        letter-spacing: -1px;
        margin-bottom: 30px;
    }
    .tk-grid-creative {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .tk-input-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .tk-form-glass-layer {
        padding: 30px;
    }
}
@media (max-width: 500px){
    .tk-check-area p {
        max-width: 100%;
    }
    .tk-btn-creative {
        margin-top: 25px;
        max-width: 130px;
        float:right;
    }
    .tk-form-footer {
        display: block;
    }
}
/* Portal Temel Ayarları */
.tk-kariyer-portal input,
.tk-kariyer-portal textarea {
    box-sizing: border-box !important;
    width: 100%;
}
.tk-kariyer-portal {
    background-color: #f8fafc;
    padding: 120px 0;
    color: #1a1f36;
    position: relative;
    overflow: hidden;
}

.tk-portal-blob {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.tk-portal-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Header Stil */
.tk-portal-header {
    text-align: left;
    margin-bottom: 80px;
}

.tk-portal-h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

    .tk-portal-h1 span {
        color: #0d9488;
    }

.tk-portal-sub {
    font-size: 20px;
    color: #4f566b;
    line-height: 1.6;
}

/* Grid Düzeni */
.tk-portal-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
    align-items: start;
}

/* Bilgi Kartları (İkonlu) */
.tk-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tk-icon-box {
    width: 54px;
    height: 54px;
    background: #f4f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #0d9488;
}

    .tk-icon-box svg {
        width: 28px;
        height: 28px;
    }

.tk-info-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    margin-top: 0;
}

.tk-info-text p {
    font-size: 14px;
    color: #4f566b;
    margin: 0;
}

/* Form Tasarımı (Ferah & Minimalist) */
.tk-form-glass {
    background: #ffffff;
    border: 1px solid #e3e8ee;
    padding: 50px;
    border-radius: 32px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.05);
}

.tk-input-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
}

.tk-input-group {
    margin-bottom: 24px;
}

    .tk-input-group label {
        display: block;
        font-size: 13px;
        font-weight: 600;
        color: #4f566b;
        margin-bottom: 8px;
    }

    .tk-input-group input, .tk-input-group textarea {
        width: 100%;
        background: #f7fafc;
        border: 1px solid #e3e8ee;
        padding: 14px 18px;
        border-radius: 12px;
        font-size: 15px;
        color: #1a1f36;
        transition: all 0.2s;
        outline: none;
    }

        .tk-input-group input:focus, .tk-input-group textarea:focus {
            border-color: #0d9488;
            background: #fff;
            box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
        }

.tk-input-with-icon {
    position: relative;
}

    .tk-input-with-icon svg {
        position: absolute;
        right: 15px;
        top: 14px;
        width: 18px;
        color: #a3acb9;
    }

/* Buton ve Alt Kısım */
.tk-form-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
}

.tk-kvkk-info {
    font-size: 12px;
    color: #a3acb9;
    max-width: 200px;
}

    .tk-kvkk-info a {
        color: #0d9488;
        font-weight: 600;
        text-decoration: none;
    }

.tk-submit-btn {
    background: #0d9488;
    color: #fff;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

    .tk-submit-btn:hover {
        background: #0a7a6f;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(13, 148, 136, 0.2);
    }

    .tk-submit-btn svg {
        width: 20px;
        transition: 0.3s;
    }

    .tk-submit-btn:hover svg {
        transform: translateX(5px);
    }

/* Responsive */
@media (max-width: 992px) {
    .tk-portal-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tk-input-pair {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .tk-portal-h1 {
        font-size: 42px;
    }

    .tk-form-glass {
        padding: 30px 20px;
    }
}
.text-center{
    text-align:center;
}
.tk-iletisim-ultra .alert-success {
    background-color: transparent;
    border-color: #34d399;
    color: #fff;
    border-radius: 32px;
}
.alert {
    padding: 15px;
    margin-bottom:15px;
}
.alert span{
    margin-left:12px;
}
.alert-success {
    background-color: #ecfdf5;
    border-color: #34d399;
    color: #065f46;
    border-radius: 32px;
}
    .alert-success::before {
        content: "✓";
        color: #10b981;
        font-size:35px;
    }


.alert-danger {
    background-color: #fef2f2;
    border-color: #f87171;
    color: #991b1b;
}
.alert-danger::before {
        content: "!";
        background-color: #ef4444;
        box-shadow: 0 0 10px rgba(239, 68, 68, 0.2);
    }
/* Konteyner ve Genel */
.tk-piyasalist-section {
    background-color: #f8fafc;
    padding: 60px 0;
    margin-top: 90px;
}

.tk-piyasalist-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header ve Zaman */
.tk-piyasalist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.tk-piyasalist-title h1 {
    font-size: 32px;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

    .tk-piyasalist-title h1 span {
        color: #0d9488;
    }

.tk-stat-time {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    font-size: 13px;
    font-weight: 600;
}

.tk-live-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse 2s infinite;
}

/* Tablo Tasarımı */
.tk-piyasalist-table-wrapper {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    border-collapse: collapse;
}

.tk-piyasalist-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

    .tk-piyasalist-table thead th {
        background: #f8fafc;
        padding: 18px 24px;
        font-size: 11px;
        font-weight: 700;
        color: #64748b;
        letter-spacing: 1px;
        border-bottom: 1px solid #e2e8f0;
    }

    .tk-piyasalist-table tbody td {
        padding: 20px 24px;
        border-bottom: 1px solid #f1f5f9;
        font-size: 14px;
        color: #334155;
    }

/* Kurum Logosu & İsmi */
.tk-table-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tk-brand-circle {
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #0d9488;
}

    .tk-brand-circle.tk-bg-turk {
        background: #0d9488;
        color: #fff;
    }

/* Fiyat ve Badge */
.tk-table-price {
    font-weight: 800;
    color: #0f172a;
    font-size: 17px;
    position: relative;
    z-index: 1;
}
.tk-table-unit {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}
.tk-price-animation-wrapper {
    display: inline-flex;
    position: relative;
    transition: transform 0.3s ease;
    align-items: baseline;
    gap: 4px;
}
.tk-price-animation-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient( 90deg, transparent, rgba(13, 148, 136, 0.1), transparent );
    transition: 0.6s;
}

/* SATIR ÜZERİNE GELİNDİĞİNDE (Hover) */
.tk-piyasalist-table tbody tr:hover .tk-price-animation-wrapper {
    transform: translateX(5px); /* Hafif sağa kayma hareketi */
}

.tk-piyasalist-table tbody tr:hover .tk-table-price {
    color: #0d9488; /* Turkuaz renge geçiş */
    text-shadow: 0 0 15px rgba(13, 148, 136, 0.2); /* Hafif parlama */
}

.tk-piyasalist-table tbody tr:hover .tk-price-animation-wrapper::after {
    left: 150%; /* Işığın soldan sağa geçişi */
}

/* SÜREKLİ HAREKET: Nabız Efekti (Pulse) */
/* Özellikle vurgulanan (highlight) satırlardaki fiyatlar için */
.tk-row-highlight .tk-table-price {
    animation: tkPricePulse 2s infinite ease-in-out;
}

@keyframes tkPricePulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }

    100% {
        opacity: 1;
    }
}
.tk-badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

    .tk-badge.up {
        background: #f0fdf4;
        color: #16a34a;
    }

    .tk-badge.down {
        background: #fef2f2;
        color: #dc2626;
    }

.tk-unit-tag {
    background: #f1f5f9;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    color: #64748b;
}

/* Satır Vurgusu */
.tk-row-highlight {
    background: #f0f9f9;
}

.tk-text-right {
    text-align: right;
}

/* Butonlar */
.tk-table-link {
    color: #0d9488;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
}

.tk-table-link-alt {
    background: #0d9488;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
}

/* Sayfalama (Paging) */
.turkuazkredi-paging {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.tk-paging-info {
    font-size: 13px;
    color: #64748b;
}

.tk-paging-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tk-page-num {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: #1e293b;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s;
}

    .tk-page-num:hover, .tk-page-num.active {
        background: #0d9488;
        color: #fff;
        border-color: #0d9488;
    }

.tk-page-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    color: #64748b;
    text-decoration: none;
}

    .tk-page-btn.disabled {
        opacity: 0.4;
        pointer-events: none;
    }

    .tk-page-btn svg {
        width: 18px;
    }

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    Haklısın, klasik tabloyu mobilde zorlamak yerine "Card (Kart)" yapısına geçmek her zaman daha temiz sonuç verir. Madem iç içe geçti, tablo yapısını mobilde tamamen kırıp, her bir piyasa verisini şık bir finansal karta dönüştürelim. Bu tasarımda kurum adı sol üstte, fiyat sağ üstte, işlem butonu ise en altta yayılmış şekilde duracak. 1. Modern Kart Tipi Mobil CSS Aşağıdaki kodu mevcut CSS'indeki mobil media query (@media (max-width: 768px)) alanıyla değiştir: CSS @media (max-width: 768px) {
        /* Tablo yapısını tamamen iptal et */
        .tk-piyasalist-table, .tk-piyasalist-table tbody, .tk-piyasalist-table tr, .tk-piyasalist-table td

{
    display: block;
    width: 100%;
}

/* Başlıkları komple kaldır */
.tk-piyasalist-table thead {
    display: none;
}

/* Her satırı bir kart yap */
.tk-piyasalist-table tr {
    margin-bottom: 16px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 16px;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-wrap: wrap; /* İçerikleri esnek dağıt */
}

/* Kurum Adı ve Logo Alanı */
.tk-piyasalist-table td:first-child {
    width: 60%; /* Kurum adını sola yasla */
    padding: 0 !important;
    border: none !important;
}

/* Fiyat Alanı */
.tk-piyasalist-table td:nth-child(2) {
    width: 40%; /* Fiyatı sağa yasla */
    text-align: right !important;
    padding: 0 !important;
    border: none !important;
}

/* İşlem/İncele Butonu Alanı */
.tk-piyasalist-table td:last-child {
    width: 100%; /* Butonu en alta yay */
    margin-top: 12px;
    padding: 12px 0 0 0 !important;
    border-top: 1px solid #f1f5f9 !important;
}

/* İçerik Detayları */
.tk-table-brand {
    gap: 10px;
}

    .tk-table-brand strong {
        font-size: 13px;
        line-height: 1.2;
        color: #1e293b;
        display: block;
        white-space: normal; /* Mobilde gerekirse alta kayabilir */
    }

.tk-brand-circle {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 12px;
}

/* Fiyat Düzenleme */
.tk-price-animation-wrapper {
    flex-direction: column; /* Mobilde fiyat ve birim alt alta */
    align-items: flex-end;
    gap: 2px;
}

.tk-table-price {
    font-size: 16px !important;
    color: #0d9488;
}

.tk-table-unit {
    font-size: 9px !important;
    opacity: 0.7;
}

/* Butonun Yeni Hali */
.tk-table-link {
    display: block;
    background: #f1f5f9;
    color: #475569;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    transition: background 0.2s;
}

    .tk-table-link:active {
        background: #e2e8f0;
    }

/* Özel Vurgulu Satır (Turkuaz) */
.tk-row-highlight {
    border-left: 4px solid #0d9488 !important;
    background: #f0fdfa !important;
}
    .tk-paging-controls .tk-page-num:nth-child(n+6) {
        display: none;
    }

    .tk-paging-controls a.tk-page-num:nth-of-type(n+5) {
        display: none;
    }

    .turkuazkredi-paging {
        padding: 10px;
    }

    .tk-paging-info {
        font-size: 11px;
        margin-bottom: 10px;
    }
    .tk-piyasalist-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .tk-mob-hide {
        display: none;
    }

    .turkuazkredi-paging {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

}
@media (max-width: 380px) {
    .tk-table-brand strong {
        max-width: 130px;
    }

    .tk-piyasalist-title h1 {
        font-size: 24px;
    }
}
/* Container & Layout */
.tk-piyasadetay-wrapper {
    margin-top: 100px;
    background-color: #f6f9fc;
    padding: 50px 0;
}

.tk-piyasadetay-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    align-items: start;
}

/* Sections */
.tk-piyasadetay-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    border: 1px solid #e1e8ed;
    margin-bottom: 25px;
}

.tk-piyasadetay-subtitle {
    font-size: 18px;
    color: #0a1f44;
    margin: 0 0 20px 0;
    font-weight: 700;
    border-bottom: 2px solid #f4f7f9;
    padding-bottom: 12px;
}

/* Hero Area */
.tk-piyasadetay-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tk-piyasadetay-logo {
    width: 70px;
    height: 70px;
    background: #0a1f44;
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
}

.tk-piyasadetay-badge {
    background: #e0f2fe;
    color: #0369a1;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: inline-block;
}

.tk-piyasadetay-title-group h1 {
    margin: 0;
    font-size: 28px;
    color: #0a1f44;
    letter-spacing: -0.5px;
}

/* Content Details */
.tk-piyasadetay-insight {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #0d9488;
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
}

.tk-piyasadetay-article {
    color: #334155;
    font-size: 16px;
    line-height: 1.8;
}

/* Sticky Sidebar */
.tk-piyasadetay-sticky {
    position: sticky;
    top: 30px;
}

/* Price Card */
.tk-piyasadetay-price-card {
    background: #000;
    border-radius: 16px;
    padding: 30px;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(10, 31, 68, 0.1);
}

.tk-piyasadetay-label {
    font-size: 11px;
    opacity: 0.7;
    letter-spacing: 1px;
}

.tk-piyasadetay-price-row {
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.tk-piyasadetay-value {
    font-size: 48px;
    font-weight: 800;
    color: #34d399;
}

.tk-piyasadetay-currency {
    font-size: 24px;
    color: #34d399;
}

.tk-piyasadetay-unit {
    font-size: 13px;
    opacity: 0.8;
}

/* Form Card */
.tk-piyasadetay-form-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #e1e8ed;
}

    .tk-piyasadetay-form-card h3 {
        margin: 0 0 10px 0;
        font-size: 20px;
        color: #0a1f44;
    }

    .tk-piyasadetay-form-card p {
        font-size: 13px;
        color: #64748b;
        margin-bottom: 20px;
    }

/* Inputs */
.tk-piyasadetay-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
    transition: 0.3s;
    background: #fff;
}

    .tk-piyasadetay-input:focus {
        outline: none;
        border-color: #0d9488;
        box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
    }

/* Button */
.tk-piyasadetay-btn {
    width: 100%;
    background: #0d9488;
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
}

    .tk-piyasadetay-btn:hover {
        background: #0f766e;
        box-shadow: 0 5px 15px rgba(13, 148, 136, 0.2);
    }

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .tk-piyasadetay-container {
        grid-template-columns: 1fr;
    }

    .tk-piyasadetay-sidebar {
        order: -1;
    }
    /* Fiyat mobilde üste gelir */
    .tk-piyasadetay-sticky {
        position: relative;
        top: 0;
    }
}
.tk-tkscoredetay-section {
    margin-top:100px;
    background-color: #f8fafc;
    padding: 60px 0;
}

.tk-tkscoredetay-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.tk-tkscoredetay-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.tk-tkscoredetay-title h1 {
    font-size: 32px;
    color: #1e293b;
    margin: 0;
    font-weight: 800;
}

    .tk-tkscoredetay-title h1 span {
        color: #0d9488;
    }

.tk-tkscoredetay-title p {
    color: #64748b;
    margin: 10px 0 0 0;
    font-size: 16px;
}

.tk-tkscoredetay-stat {
    background: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tk-tkscoredetay-live-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

/* Grid & Cards */
.tk-tkscoredetay-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 25px;
}

.tk-tkscoredetay-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

    .tk-tkscoredetay-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 25px -5px rgba(0,0,0,0.05);
        border-color: #0d9488;
    }

.tk-tkscoredetay-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tk-tkscoredetay-verified {
    background: #f0fdfa;
    color: #0d9488;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tk-tkscoredetay-country {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 500;
}

.tk-tkscoredetay-project-name {
    font-size: 20px;
    color: #0f172a;
    margin: 0 0 25px 0;
    font-weight: 700;
    min-height: 56px;
}

/* Score Box (Görseldeki Stil) */
.tk-tkscoredetay-score-box {
    background: #f8fafc;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.tk-tkscoredetay-score-value {
    display: flex;
    align-items: baseline;
}

    .tk-tkscoredetay-score-value .big-score {
        font-size: 32px;
        font-weight: 800;
        color: #0d9488;
    }

    .tk-tkscoredetay-score-value .total-score {
        font-size: 18px;
        font-weight: 600;
        color: #94a3b8;
    }

.tk-tkscoredetay-score-label {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 1px;
}

/* Footer */
.tk-tkscoredetay-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.tk-tkscoredetay-price-info .label {
    display: block;
    font-size: 11px;
    color: #94a3b8;
    font-weight: 700;
    margin-bottom: 5px;
}

.tk-tkscoredetay-price-info .price {
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
}

.tk-tkscoredetay-link {
    color: #0d9488;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .tk-tkscoredetay-link svg {
        width: 18px;
        height: 18px;
        transition: transform 0.2s;
    }

    .tk-tkscoredetay-link:hover svg {
        transform: translateX(5px);
    }

/* Sayfalama Stilleri (Mevcut yapıya uyumlu) */
.turkuazkredi-paging {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
}

.tk-paging-info {
    font-size: 14px;
    color: #64748b;
}

.tk-paging-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.tk-page-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: #475569;
    font-weight: 600;
    transition: 0.2s;
}

    .tk-page-num.active {
        background: #0d9488;
        color: #fff;
        border-color: #0d9488;
    }

.tk-page-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f1f5f9;
    color: #475569;
}

    .tk-page-btn svg {
        width: 20px;
    }

/* Mobile */
@media (max-width: 768px) {
    .tk-tkscoredetay-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .tk-tkscoredetay-grid {
        grid-template-columns: 1fr;
    }

    .turkuazkredi-paging {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}
/* Başarılı / Güçlü Projeler (80-100) */
.tk-tkscoredetay-score-box.tk-score-high {
    background: #ecfdf5; /* Çok açık yeşil arka plan */
    border: 1px solid #10b981;
}

.tk-score-high .big-score {
    color: #059669 !important;
}

.tk-score-high .tk-tkscoredetay-score-label {
    color: #065f46;
}

/* Orta Derece Projeler (60-79) */
.tk-tkscoredetay-score-box.tk-score-mid {
    background: #fffbeb; /* Çok açık sarı arka plan */
    border: 1px solid #f59e0b;
}

.tk-score-mid .big-score {
    color: #d97706 !important;
}

.tk-score-mid .tk-tkscoredetay-score-label {
    color: #92400e;
}

/* Riskli / Düşük Puanlı Projeler (0-59) */
.tk-tkscoredetay-score-box.tk-score-low {
    background: #fef2f2; /* Çok açık kırmızı arka plan */
    border: 1px solid #ef4444;
}

.tk-score-low .big-score {
    color: #dc2626 !important;
}

.tk-score-low .tk-tkscoredetay-score-label {
    color: #991b1b;
}
/* Temel Container */
.tk-scoredetaylist-wrapper {
    margin-top:100px;
    background-color: #f6f9fc;
    padding: 50px 0;
}

.tk-scoredetaylist-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

/* Kartlar */
.tk-scoredetaylist-section {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #e2e8f0;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
}

.tk-scoredetaylist-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 20px 0;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 12px;
}

/* Hero & Badge */
.tk-scoredetaylist-badge {
    background: #f1f5f9;
    color: #475569;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 15px;
}

.tk-scoredetaylist-dot {
    width: 6px;
    height: 6px;
    background: #0d9488;
    border-radius: 50%;
}

.tk-scoredetaylist-title-group h1 {
    font-size: 32px;
    color: #0f172a;
    margin: 0;
    letter-spacing: -1px;
}

/* --- DINAMIK SKOR RENKLERI --- */
.tk-scoredetaylist-rating-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-left: 8px solid #cbd5e1;
}

/* Yüksek (80-100) - Yeşil */
.tk-score-high {
    border-left-color: #10b981;
    background: #f0fdf4;
}

    .tk-score-high .tk-scoredetaylist-big-num {
        color: #10b981;
    }

/* Orta (60-79) - Sarı/Turuncu */
.tk-score-mid {
    border-left-color: #f59e0b;
    background: #fffbeb;
}

    .tk-score-mid .tk-scoredetaylist-big-num {
        color: #f59e0b;
    }

/* Düşük (0-59) - Kırmızı */
.tk-score-low {
    border-left-color: #ef4444;
    background: #fef2f2;
}

    .tk-score-low .tk-scoredetaylist-big-num {
        color: #ef4444;
    }

.tk-scoredetaylist-rating-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tk-scoredetaylist-label-tm {
    font-weight: 800;
    font-size: 12px;
    color: #94a3b8;
    letter-spacing: 1px;
}

.tk-scoredetaylist-score-display {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.tk-scoredetaylist-big-num {
    font-size: 56px;
    font-weight: 900;
}

.tk-scoredetaylist-total {
    font-size: 24px;
    color: #94a3b8;
    font-weight: 600;
}

.tk-scoredetaylist-rating-text p {
    margin: 5px 0 0;
    color: #64748b;
    font-size: 14px;
}

/* Sağ Panel Widgets */
.tk-scoredetaylist-sticky {
    position: sticky;
    top: 100px;
}

.tk-scoredetaylist-price-widget {
    background: #0f172a;
    border-radius: 20px;
    padding: 35px;
    color: #fff;
    text-align: center;
    margin-bottom: 25px;
}

.tk-scoredetaylist-price-label {
    font-size: 11px;
    opacity: 0.6;
    letter-spacing: 1px;
}

.tk-scoredetaylist-price-row {
    margin: 15px 0;
    font-size: 42px;
    font-weight: 800;
    color: #10b981;
}

.tk-scoredetaylist-cur {
    font-size: 18px;
    margin-left: 5px;
    color: #10b981;
}

.tk-scoredetaylist-unit {
    font-size: 13px;
    opacity: 0.8;
}

/* Form */
.tk-scoredetaylist-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    border: 1px solid #e2e8f0;
}

.tk-scoredetaylist-input {
    width: 100%;
    padding: 14px;
    margin-bottom: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    transition: 0.3s;
    box-sizing: border-box;
}

.tk-scoredetaylist-btn {
    width: 100%;
    background: #0d9488;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

    .tk-scoredetaylist-btn:hover {
        background: #0f766e;
    }

/* Mobile */
@media (max-width: 1024px) {
    .tk-scoredetaylist-container {
        grid-template-columns: 1fr;
    }

    .tk-scoredetaylist-sidebar {
        order: -1;
    }
}
.tk-scoredetaylist-rating-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 10px 0;
}

/* SVG Progress Ring */
.tk-progress-ring {
    transform: rotate(-90deg);
    filter: drop-shadow(0 0 8px rgba(0,0,0,0.05));
}

.tk-progress-ring__background {
    stroke: #f1f5f9;
}

.tk-progress-ring__circle {
    transition: stroke-dashoffset 1.5s ease-out;
    stroke-linecap: round;
}

/* Puan Renkleri ve Animasyon Tetikleyici */
.tk-score-high .tk-progress-ring__circle {
    stroke: #10b981;
}

.tk-score-mid .tk-progress-ring__circle {
    stroke: #f59e0b;
}

.tk-score-low .tk-progress-ring__circle {
    stroke: #ef4444;
}

/* Puan Rakam Konumlandırma */
.tk-scoredetaylist-visual {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tk-scoredetaylist-score-display {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.tk-scoredetaylist-big-num {
    font-size: 38px;
    font-weight: 900;
    animation: countIn 1.5s ease-out;
}

/* Badge ve Metin Güzelleştirme */
.tk-status-pill {
    display: inline-block;
    font-size: 10px;
    background: rgba(0,0,0,0.05);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}
    /* Yaklaşan - Yeşil (Teal) */
    .tk-status-pill.green {
        background: #f0fdfa; /* Tarih kutusuyla aynı soft yeşil */
        color: #0d9488;
        border-color: rgba(13, 148, 136, 0.1);
    }

    /* Tamamlandı - Kırmızı */
    .tk-status-pill.red {
        background: #fef2f2; /* Tarih kutusuyla aynı soft kırmızı */
        color: #b91c1c;
        border-color: rgba(185, 28, 28, 0.1);
    }

    /* Belirsiz - Gri */
    .tk-status-pill.gray {
        background: #f8fafc;
        color: #64748b;
        border-color: #e2e8f0;
    }
.tk-dynamic-status strong {
    font-size: 18px;
    color: inherit;
}

/* Animasyonlar */
@keyframes countIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 600px) {
    .tk-scoredetaylist-rating-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}
/* Container Yapısı */
.tk-sss-wrapper {
    background: #f8fafc;
    padding: 100px 0;
    overflow: hidden;
}

.tk-sss-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Tasarımı */
.tk-sss-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    padding: 40px 0;
}

.tk-sss-badge {
    background: #e0f2fe;
    color: #0369a1;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tk-sss-header h1 {
    font-size: 42px;
    color: #0f172a;
    margin: 20px 0;
    font-weight: 800;
}

    .tk-sss-header h1 span {
        color: #0d9488;
        position: relative;
    }

.tk-sss-header p {
    color: #64748b;
    font-size: 18px;
}

/* Akordeon Liste */
.tk-sss-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tk-sss-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Input Kontrol (Gizli) */
.tk-sss-input {
    display: none;
}

/* Soru Başlığı */
.tk-sss-label {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    position: relative;
    user-select: none;
}

.tk-sss-number {
    margin-right: 20px;
    color: #0d9488;
    font-weight: 900;
    opacity: 0.3;
    font-size: 24px;
    transition: 0.3s;
}

/* Ok İkonu Animasyonu */
.tk-sss-icon {
    margin-left: auto;
    width: 24px;
    height: 24px;
    position: relative;
    transition: 0.4s;
}

    .tk-sss-icon::before, .tk-sss-icon::after {
        content: '';
        position: absolute;
        background: #94a3b8;
        border-radius: 2px;
    }

    .tk-sss-icon::before {
        width: 100%;
        height: 2px;
        top: 50%;
        transform: translateY(-50%);
    }

    .tk-sss-icon::after {
        width: 2px;
        height: 100%;
        left: 50%;
        transform: translateX(-50%);
        transition: 0.4s;
    }

/* İçerik Alanı Animasyonu */
.tk-sss-content {
    max-height: 0;
    padding: 0 30px;
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

/* --- AKTİF DURUM (Sihirli Kısım) --- */
.tk-sss-input:checked + .tk-sss-label {
    color: #0d9488;
    background: #f0fdfa;
}

    .tk-sss-input:checked + .tk-sss-label .tk-sss-number {
        opacity: 1;
        transform: scale(1.1);
    }

    .tk-sss-input:checked + .tk-sss-label .tk-sss-icon {
        transform: rotate(135deg);
    }

        
.tk-sss-input:checked ~ .tk-sss-content {
    max-height: 500px;
    padding: 0 30px 30px 75px;
    opacity: 1;
}

.tk-sss-item:has(.tk-sss-input:checked) {
    border-color: #0d9488;
    box-shadow: 0 20px 25px -5px rgba(13, 148, 136, 0.1);
    transform: translateY(-2px);
}

/* Giriş Animasyonu */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tk-sss-item {
    animation: fadeInUp 0.5s ease backwards;
}

    .tk-sss-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    .tk-sss-item:nth-child(2) {
        animation-delay: 0.2s;
    }

    .tk-sss-item:nth-child(3) {
        animation-delay: 0.3s;
    }
.tk-sss-glow-circle {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 150px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.15) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
    filter: blur(40px);
}

/* Badge (Rozet) Tasarımı */
.tk-sss-badge-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    animation: bounceSlow 3s infinite ease-in-out;
}

.tk-sss-badge {
    background: #ffffff;
    border: 1px solid rgba(13, 148, 136, 0.2);
    color: #0d9488;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
}

.tk-sss-badge-icon {
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
}

/* Başlık ve Gradyan Yazı */
.tk-sss-main-title {
    font-size: 52px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -2px;
}

.tk-sss-gradient-text {
    display: block;
    background: linear-gradient(90deg, #0d9488, #2dd4bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Başlık Altı Çizgi */
.tk-sss-title-line {
    width: 60px;
    height: 4px;
    background: #0d9488;
    margin: 25px auto;
    border-radius: 10px;
    position: relative;
}

    .tk-sss-title-line::after {
        content: '';
        position: absolute;
        width: 10px;
        height: 4px;
        background: #2dd4bf;
        right: -15px;
        border-radius: 10px;
    }

/* Açıklama Metni */
.tk-sss-lead {
    font-size: 20px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

    .tk-sss-lead strong {
        color: #0f172a;
        border-bottom: 2px solid rgba(13, 148, 136, 0.2);
    }

/* Animasyonlar */
@keyframes bounceSlow {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Mobile Uyumluluk */
@media (max-width: 768px) {
    .tk-sss-main-title {
        font-size: 36px;
    }

    .tk-sss-lead {
        font-size: 16px;
        padding: 0 20px;
    }
}
/* Ana Konteyner */
.tk-akademi-section {
    margin-top:100px;
    padding: 30px 0;
    max-width: 1300px;
    margin: 100px auto 0;
}

/* 2'li Listeleme Grid Yapısı */
.tk-akademi-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Tam 2'li listeleme */
    gap: 40px;
    padding: 20px;
}

/* Modern Kart Tasarımı */
.tk-akademi-card-v2 {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 32px;
    padding: 40px;
    text-decoration: none !important;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

/* Arka Plan Glow Efekti */
.tk-card-bg-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(13, 148, 136, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: 0.5s;
    pointer-events: none;
}

.tk-akademi-card-v2:hover .tk-card-bg-glow {
    opacity: 1;
    transform: scale(0.8);
}

.tk-akademi-card-v2:hover {
    transform: translateY(-12px);
    border-color: #0d9488;
    box-shadow: 0 30px 60px -12px rgba(13, 148, 136, 0.15);
}

/* Üst Kısım: İkon ve Badge */
.tk-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.tk-icon-wrapper {
    width: 70px;
    height: 70px;
    background: #f0fdfa;
    color: #0d9488;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

    .tk-icon-wrapper svg {
        width: 35px;
        height: 35px;
        stroke-width: 1.5;
    }

.tk-akademi-card-v2:hover .tk-icon-wrapper {
    background: #0d9488;
    color: #fff;
    transform: rotateY(180deg);
}

.tk-card-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #94a3b8;
    background: #f8fafc;
    padding: 6px 14px;
    border-radius: 100px;
    letter-spacing: 1px;
}

/* Gövde Metinleri */
.tk-card-title {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}

.tk-card-text {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 35px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Footer: Link ve Ok */
.tk-card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid #f1f5f9;
}

.tk-footer-link {
    font-weight: 700;
    font-size: 14px;
    color: #0d9488;
}

.tk-arrow-circle {
    width: 40px;
    height: 40px;
    border: 2px solid #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

    .tk-arrow-circle svg {
        width: 20px;
        height: 20px;
        stroke-width: 2.5;
    }

.tk-akademi-card-v2:hover .tk-arrow-circle {
    background: #0d9488;
    border-color: #0d9488;
    color: #fff;
    transform: translateX(5px);
}

/* Tablet ve Mobil Uyumluluk */
@media (max-width: 992px) {
    .tk-akademi-grid-modern {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}
/* --- TK Akademi Header Tasarımı --- */
.tk-akademi-header-section {
    position: relative;
    padding: 30px 20px 60px;
    text-align: center;
    overflow: hidden;
}



/* Badge (Rozet) Tasarımı */
.tk-akademi-badge-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.tk-akademi-badge {
    background: #f0fdfa;
    color: #0d9488;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(13, 148, 136, 0.1);
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.05);
}

.tk-akademi-badge-icon {
    width: 18px;
    height: 18px;
}

/* Başlık Grubu */
.tk-akademi-title-wrapper {
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}

.tk-akademi-main-title {
    font-size: 52px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 15px;
}

.tk-akademi-gradient-text {
    display: block;
    background: linear-gradient(90deg, #0d9488, #2dd4bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Başlık Altındaki Dekoratif Çizgi */
.tk-akademi-title-line {
    width: 80px;
    height: 4px;
    background: #0d9488;
    margin: 20px auto 0;
    border-radius: 10px;
    opacity: 0.3;
}

/* Lead Paragraf */
.tk-akademi-lead {
    font-size: 19px;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

    .tk-akademi-lead strong {
        color: #0f172a;
        font-weight: 700;
    }

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .tk-akademi-main-title {
        font-size: 36px;
    }

    .tk-akademi-lead {
        font-size: 16px;
    }

    .tk-akademi-header-section {
        padding: 60px 20px 40px;
    }
}
.tk-etkinlikler-section {
    padding: 80px 0;
    max-width: 1300px;
    margin: 100px auto 0;
}

.tk-etkinlikler-header {
    text-align: center;
    margin-bottom: 60px;
}

.tk-etkinlikler-badge {
    background: #f0fdfa;
    color: #0d9488;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

.tk-etkinlikler-title {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 15px;
}

.tk-etkinlikler-gradient {
    background: linear-gradient(90deg, #0d9488, #2dd4bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tk-etkinlikler-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Kart Yapısı */
.tk-etkinlikler-card {
    display: flex;
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    padding: 30px;
    transition: 0.4s;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

    .tk-etkinlikler-card:hover {
        transform: scale(1.01);
        box-shadow: 0 20px 40px rgba(13, 148, 136, 0.08);
        border-color: #0d9488;
    }

/* Tarih Kutusu */
.tk-etkinlikler-date-box {
    min-width: 100px;
    height: 100px;
    background: #0f172a;
    color: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 40px;
}

.tk-day {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.tk-month {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.8;
}

.tk-etkinlikler-content {
    flex: 1;
}

.tk-etkinlikler-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.tk-etkinlikler-type {
    font-size: 12px;
    font-weight: 700;
    color: #0d9488;
    text-transform: uppercase;
}

.tk-etkinlikler-status {
    font-size: 11px;
    background: #ecfdf5;
    color: #059669;
    padding: 2px 10px;
    border-radius: 20px;
}

.tk-etkinlikler-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.tk-etkinlikler-desc {
    color: #64748b;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.tk-etkinlikler-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px dashed #e2e8f0;
}

.tk-etkinlikler-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 14px;
}

    .tk-etkinlikler-info svg {
        width: 16px;
        height: 16px;
    }

.tk-etkinlikler-btn {
    background: #0f172a;
    color: #fff;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

    .tk-etkinlikler-btn:hover {
        background: #0d9488;
    }

/* Sayfalama */
.tk-etkinlikler-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.tk-pg-number, .tk-pg-prev, .tk-pg-next {
    padding: 10px 18px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    color: #475569;
}

    .tk-pg-number.active {
        background: #0d9488;
        color: #fff;
        border-color: #0d9488;
    }

    .tk-pg-number:hover:not(.active) {
        border-color: #0d9488;
        color: #0d9488;
    }

@media (max-width: 768px) {
    .tk-date-upcoming {
    box-sizing: border-box;
}
    .tk-date-text {
       margin-bottom:10px;
    }
    .tk-etkinlikler-card-title {
        font-size: 18px;
        line-height:23px;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 10px;
    }
    .tk-etkinlikler-title {
        font-size: 30px;
        line-height:35px;
        font-weight: 800;
        color: #0f172a;
        margin-top: 15px;
    }
    .tk-etkinlikler-card {
        flex-direction: column;
    }

    .tk-etkinlikler-date-box {
        margin-bottom: 20px;
        width: 100%;
    }
}
/* Genel Kutu Yapısı */
.tk-etkinlikler-date-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    padding: 18px 10px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

/* Durum 1: Yaklaşan Etkinlik (Premium Teal) */
.tk-date-upcoming {
    background: linear-gradient(145deg, #f0fdfa, #ccfbf1);
    color: #0d9488;
    border-color: rgba(13, 148, 136, 0.1);
    box-shadow: 0 10px 20px -5px rgba(13, 148, 136, 0.1);
}

    .tk-date-upcoming svg {
        color: #0d9488;
        filter: drop-shadow(0 2px 4px rgba(13, 148, 136, 0.2));
    }

    .tk-date-upcoming .tk-date-divider {
        background: rgba(13, 148, 136, 0.2);
    }

    .tk-date-upcoming .tk-date-status-indicator {
        background: #0d9488;
        box-shadow: 0 0 8px #2dd4bf;
    }

/* Durum 2: Tamamlanmış Etkinlik (Modern Muted Red) */
.tk-date-completed {
    background: linear-gradient(145deg, #fef2f2, #fee2e2);
    color: #991b1b;
    border-color: rgba(153, 27, 27, 0.05);
    filter: grayscale(0.3); /* Biraz daha sönük görünmesi için */
}

    .tk-date-completed svg {
        color: #b91c1c;
    }

    .tk-date-completed .tk-date-divider {
        background: rgba(153, 27, 27, 0.15);
    }

    .tk-date-completed .tk-date-status-indicator {
        background: #ef4444;
        opacity: 0.6;
    }

/* İç Elemanlar */
.tk-date-icon-bg {
    background: rgba(255, 255, 255, 0.5);
    padding: 8px;
    border-radius: 12px;
    margin-bottom: 10px;
}

    .tk-date-icon-bg svg {
        width: 24px;
        height: 24px;
        display: block;
    }

.tk-date-divider {
    width: 30px;
    height: 2px;
    margin-bottom: 10px;
    border-radius: 2px;
}

.tk-date-text {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.2px;
    text-align: center;
    line-height: 1.2;
}

/* Kutu altındaki küçük nokta göstergesi */
.tk-date-status-indicator {
    position: absolute;
    bottom: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

/* Hover Efekti */
.tk-etkinlikler-date-box:hover {
    transform: translateY(-3px) scale(1.02);
}
/* Ana Kapsayıcı: İkisini yan yana ve tam ortada tutar */
.tk-meta-wrapper {
    display: inline-flex;
    align-items: center; /* Dikeyde tam eşitleme sağlar */
    gap: 12px; /* Aralarındaki boşluk */
    margin-bottom: 20px;
}

/* Sol Taraf: Kategori Yazısı */
.tk-type-text {
    font-size: 11px;
    font-weight: 800;
    color: #0d9488;
    letter-spacing: 0.8px;
    position: relative;
    padding-right: 12px;
}

    /* İsteğe bağlı: İkisinin arasına ince bir ayraç çizgisi */
    .tk-type-text::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 12px;
        background: #e2e8f0;
    }

/* Sağ Taraf: Durum Rozeti (Badge) */
.tk-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px; /* Sabit yükseklik, eşitsizliği bitirir */
    padding: 0 12px;
    border-radius: 6px; /* Daha modern, hafif keskin köşeli oval */
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

/* Durum Renkleri */
.is-upcoming {
    background-color: #f0fdfa;
    color: #0d9488;
    border: 1px solid rgba(13, 148, 136, 0.2);
}

.is-completed {
    background-color: #fef2f2;
    color: #b91c1c;
    border: 1px solid rgba(185, 28, 28, 0.2);
}
/* Temel ve Arka Plan */
.tk-etkinlikdetay-master {
    background-color: #f4f7fa;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 91px;
    padding: 20px 0 100px;
}

/* Animasyonlu Objeler */
.tk-etkinlikdetay-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.4;
    animation: floatAnim 18s infinite alternate ease-in-out;
}

.tk-shape-1 {
    width: 600px;
    height: 600px;
    background: #0d9488;
    top: -200px;
    left: -200px;
}

.tk-shape-2 {
    width: 500px;
    height: 500px;
    background: #2dd4bf;
    bottom: -150px;
    right: -150px;
    animation-delay: -5s;
}

@keyframes floatAnim {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(80px, 50px) rotate(15deg);
    }
}

.tk-etkinlikdetay-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 1;
}

/* Üst Bar */
.tk-etkinlikdetay-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.tk-etkinlikdetay-btn-return {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #1e293b;
    font-weight: 700;
    transition: 0.3s ease;
}

.tk-circle-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 15px rgba(0,0,0,0.06);
    color: #0d9488;
}

    .tk-circle-icon svg {
        width: 18px;
        height: 18px;
    }

.tk-etkinlikdetay-btn-return:hover {
    transform: translateX(-5px);
    color: #0d9488;
}

.tk-etkinlikdetay-brand-badge {
    background: #fff;
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 13px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    color: #334155;
}

/* Hero Section */
.tk-etkinlikdetay-hero-section {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out;
}

.tk-etkinlikdetay-main-title {
    font-size: clamp(34px, 5.5vw, 62px);
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
    margin: 25px 0;
    letter-spacing: -2.5px;
}

.tk-etkinlikdetay-quick-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tk-etkinlikdetay-q-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(15px);
    padding: 18px 30px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
}

.tk-q-icon-box {
    background: #f0fdfa;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d9488;
}

    .tk-q-icon-box svg {
        width: 22px;
        height: 22px;
    }

.tk-q-data small {
    display: block;
    font-size: 10px;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 1.2px;
    margin-bottom: 3px;
}

.tk-q-data span {
    font-weight: 700;
    color: #1e293b;
    font-size: 16px;
}

/* Grid & Content */
.tk-etkinlikdetay-grid-system {
    display: grid;
    grid-template-columns: 1fr 400px; /* Sol geniş, sağ 400px */
    gap: 50px;
    transition: all 0.5s ease;
}

.tk-etkinlikdetay-glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    border-radius: 40px;
    padding: 55px;
    border: 1px solid #fff;
    box-shadow: 0 40px 100px rgba(0,0,0,0.03);
}

.is-full-content .tk-etkinlikdetay-grid-system {
    grid-template-columns: 1fr; /* Tüm alanı kapla */
    max-width: 900px; /* Okunabilirlik için çok yayılmasın, merkezde kalsın */
    margin: 0 auto;
}

/* Kartın içindeki metni de daha geniş okumaya uygun hale getir */
.is-full-content .tk-etkinlikdetay-glass-card {
    padding: 60px; /* Biraz daha ferahlık */
    border-color: rgba(225, 29, 72, 0.1); /* Hafif kırmızımsı çerçeve */
}

/* İkonun rengini de kırmızı tema ile uyumlu yapalım */
.is-completed-theme .tk-glass-header svg {
    stroke: #e11d48;
}
.tk-glass-header {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.tk-glass-body {
    font-size: 18.5px;
    line-height: 1.95;
    color: #475569;
}

/* Sidebar Form */
.tk-etkinlikdetay-premium-form {
    background: #0f172a;
    border-radius: 45px;
    padding: 55px 45px;
    color: #fff;
    position: sticky;
    top: 40px;
    box-shadow: 0 50px 100px rgba(15, 23, 42, 0.35);
}

.tk-pform-head h3 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 12px;
}

.tk-pform-line {
    width: 60px;
    height: 5px;
    background: #0d9488;
    border-radius: 3px;
    margin-bottom: 20px;
}

.tk-pform-head p {
    font-size: 15px;
    opacity: 0.65;
    margin-bottom: 45px;
}

.tk-pform-group {
    position: relative;
    margin-bottom: 22px;
}

.tk-input-svg {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: #0d9488;
    width: 20px;
    height: 20px;
}

.tk-pform-group input {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 22px 25px 22px 60px;
    border-radius: 22px;
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
    outline: none;
    box-sizing: border-box;
}

    .tk-pform-group input:focus {
        background: rgba(255,255,255,0.12);
        border-color: #0d9488;
    }

.tk-etkinlikdetay-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    color: #fff;
    text-decoration: none;
    padding: 24px;
    border-radius: 22px;
    font-weight: 800;
    font-size: 16px;
    transition: 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

    .tk-etkinlikdetay-action-btn:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 25px 50px rgba(13, 148, 136, 0.45);
    }

.tk-pform-security {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0.45;
    font-size: 12px;
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobil Uyumluluk */
@media (max-width: 991px) {
    .tk-etkinlikdetay-grid-system {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tk-etkinlikdetay-premium-form {
        position: static;
        padding: 45px 35px;
        border-radius: 35px;
    }

    .tk-etkinlikdetay-glass-card {
        padding: 40px 30px;
        border-radius: 30px;
    }

    .tk-etkinlikdetay-main-title {
        font-size: 36px;
    }
}
.tk-etkinlikdetay-master.is-completed-theme .tk-shape-1 {
    background: #ef4444; /* Kırmızı */
    opacity: 0.3;
}

.tk-etkinlikdetay-master.is-completed-theme .tk-shape-2 {
    background: #f87171; /* Açık Kırmızı */
    opacity: 0.2;
}

/* Tamamlanmış etkinlikte butonu pasif veya kırmızı yapalım */
.tk-etkinlikdetay-master.is-completed-theme .tk-etkinlikdetay-action-btn {
    background: linear-gradient(135deg, #b91c1c 0%, #ef4444 100%);
    box-shadow: 0 10px 20px rgba(185, 28, 28, 0.2);
    cursor: not-allowed;
    opacity: 0.8;
}

/* İkon kutularının renklerini de kırmızıya çekelim */
.tk-etkinlikdetay-master.is-completed-theme .tk-q-icon-box {
    background: #fef2f2;
    color: #b91c1c;
}

.tk-etkinlikdetay-master.is-completed-theme .tk-circle-icon {
    color: #b91c1c;
}