/* ============================================================
   Protokol - Ana Stil Dosyası
   Eski site (PHP/FileMaker) ile uyumlu renk şeması ve tasarım
   ============================================================ */

:root {
    --primary: #001f3f;
    --primary-light: #003366;
    --primary-hover: #004d99;
    --accent: #0074d9;
    --secondary: #6c757d;
    --success: #2ecc40;
    --danger: #ff4136;
    --warning: #ff851b;
    --info: #17a2b8;
    --header-bg: #001f3f;
    --footer-bg: #001f3f;
    --body-bg: #f5f5f5;
    --card-radius: 12px;
    --header-height: 90px;
}

/* ==================== GLOBAL ==================== */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif !important;
    background-color: var(--body-bg) !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: var(--header-height) !important;
    padding-bottom: 80px;
}

.main-content {
    flex: 1;
}

/* ==================== HEADER / NAVBAR ==================== */
header.main-header {
    background: var(--header-bg) !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    height: var(--header-height);
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

header.main-header .header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    height: 100%;
    gap: 20px;
}

/* Logo */
header.main-header a.logo {
    display: flex;
    align-items: center;
    text-decoration: none !important;
    gap: 10px;
    flex-shrink: 0;
}

header.main-header a.logo img,
header.main-header a.logo .logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

header.main-header .logo-text {
    font-size: 22px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    letter-spacing: -0.5px;
    white-space: nowrap;
}

/* Navigation Menu */
header.main-header ul.nav-menu {
    display: flex !important;
    gap: 4px;
    align-items: center;
    list-style: none !important;
    flex-wrap: nowrap;
    margin: 0 !important;
    padding: 0 !important;
}

header.main-header ul.nav-menu > li {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

header.main-header ul.nav-menu > li > a {
    text-decoration: none !important;
    color: rgba(255,255,255,0.7) !important;
    font-weight: 500;
    font-size: 13.5px;
    transition: all 0.25s ease;
    position: relative;
    line-height: 1.4;
    padding: 7px 10px;
    white-space: nowrap;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

header.main-header ul.nav-menu > li > a i {
    font-size: 14px;
    opacity: 0.65;
    display: none;
}

header.main-header ul.nav-menu > li > a:hover {
    color: #fff !important;
    background: rgba(255,255,255,0.08);
}

header.main-header ul.nav-menu > li > a.active {
    color: #fff !important;
    background: rgba(255,255,255,0.12);
    font-weight: 600;
}

header.main-header ul.nav-menu > li > a.active i {
    opacity: 1;
}

/* Navigation Dropdown */
header.main-header li.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

header.main-header .nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    font-size: 13.5px;
    transition: all 0.25s ease;
    padding: 7px 10px;
    white-space: nowrap;
    border-radius: 10px;
}

header.main-header .nav-dropdown-toggle i {
    font-size: 14px;
    opacity: 0.65;
    display: none;
}

header.main-header .nav-dropdown-toggle:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
}

header.main-header .nav-dropdown-arrow {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    transition: transform 0.3s ease;
    display: inline-block;
}

header.main-header li.nav-dropdown:hover .nav-dropdown-arrow {
    transform: rotate(180deg);
}

header.main-header ul.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: white;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,31,63,0.12), 0 2px 8px rgba(0,0,0,0.06);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 1060;
    overflow: hidden;
    list-style: none !important;
    padding: 6px !important;
    margin: 0 !important;
    border: 1px solid rgba(0,31,63,0.06);
}

header.main-header li.nav-dropdown:hover ul.nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

header.main-header ul.nav-dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

header.main-header ul.nav-dropdown-menu li a {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 12px 16px !important;
    color: #334155 !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: none;
    border-radius: 10px;
}

header.main-header ul.nav-dropdown-menu li:last-child a {
    border-bottom: none;
}

header.main-header ul.nav-dropdown-menu li a:hover {
    background: rgba(0,31,63,0.05);
    color: #001f3f !important;
}

header.main-header ul.nav-dropdown-menu li a i {
    width: 18px;
    font-size: 16px;
    flex-shrink: 0;
    color: #64748b;
}

header.main-header ul.nav-dropdown-menu li a:hover i {
    color: #001f3f;
}

/* Header Search */
header.main-header .header-search {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

header.main-header .header-search input {
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 10px 0 0 10px;
    padding: 8px 14px;
    font-size: 14px;
    outline: none;
    width: 200px;
    transition: border-color 0.3s;
    background: rgba(255,255,255,0.08);
    height: 40px;
    color: #fff;
}

header.main-header .header-search input::placeholder {
    color: rgba(255,255,255,0.4);
}

header.main-header .header-search input:focus {
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.12);
}

header.main-header .header-search button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0 14px;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
    transition: background 0.3s;
    height: 40px;
    display: flex;
    align-items: center;
}

header.main-header .header-search button:hover {
    background: var(--primary-light);
}

/* Header Auth Buttons */
header.main-header .header-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

header.main-header .btn-header-login {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.85) !important;
    border-radius: 10px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.25s;
    white-space: nowrap;
}

header.main-header .btn-header-login:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.4);
    color: white !important;
}

header.main-header .btn-header-register {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    background: linear-gradient(135deg, #0074d9, #005fb3);
    color: white !important;
    border: 1.5px solid transparent;
    border-radius: 10px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.25s;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,116,217,0.3);
}

header.main-header .btn-header-register:hover {
    background: linear-gradient(135deg, #005fb3, #004d99);
    box-shadow: 0 4px 12px rgba(0,116,217,0.4);
    color: white !important;
}

/* User Menu */
header.main-header .user-menu {
    position: relative;
}

header.main-header .user-menu-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 10px;
    transition: background 0.2s;
}

header.main-header .user-menu-toggle:hover {
    background: rgba(255,255,255,0.08);
}

header.main-header .user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #001f3f, #003d7a);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 13px;
}

header.main-header .membership-badge {
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-standart { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.7); }
.badge-pro { background: rgba(0,116,217,0.3); color: #5cb8ff; }
.badge-vip { background: rgba(245,158,11,0.3); color: #fbbf24; }
.badge-kurumsal { background: rgba(16,185,129,0.25); color: #34d399; }

header.main-header ul.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,31,63,0.12), 0 2px 8px rgba(0,0,0,0.06);
    min-width: 210px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 1060;
    overflow: hidden;
    list-style: none !important;
    padding: 6px !important;
    margin: 0 !important;
    border: 1px solid rgba(0,31,63,0.06);
}

header.main-header .user-menu:hover ul.user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

header.main-header ul.user-dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

header.main-header ul.user-dropdown-menu li a {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 10px 14px !important;
    color: #334155 !important;
    text-decoration: none !important;
    font-size: 13px;
    transition: all 0.2s;
    border-bottom: none;
    border-radius: 10px;
    font-weight: 500;
}

header.main-header ul.user-dropdown-menu li:last-child a {
    border-bottom: none;
}

header.main-header ul.user-dropdown-menu li a:hover {
    background: rgba(0,31,63,0.05);
    color: #001f3f !important;
}

header.main-header ul.user-dropdown-menu li a.text-danger {
    color: var(--danger) !important;
}

/* Mobile Toggle */
header.main-header .mobile-toggle {
    display: none;
    background: linear-gradient(135deg, #001f3f, #003d7a);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,31,63,0.2);
}

/* Desktop: Mobil-only bölümleri gizle */
header.main-header .mobile-user-section,
header.main-header .mobile-auth-section {
    display: none !important;
    list-style: none;
}

/* Mobil dropdown aktif durumu */
header.main-header li.nav-dropdown.active > ul.nav-dropdown-menu {
    max-height: 500px;
}

/* Mobil user section stili */
header.main-header .mobile-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
header.main-header .mobile-user-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
header.main-header .mobile-user-name {
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    color: #001f3f;
    font-size: 15px;
}
header.main-header .mobile-user-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}
header.main-header .mobile-user-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
header.main-header .mobile-user-menu li:last-child {
    border-bottom: none;
}
header.main-header .mobile-user-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 8px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
    border-radius: 8px;
}
header.main-header .mobile-user-menu a:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}
header.main-header .mobile-user-menu a.text-danger {
    color: #e74c3c !important;
}

/* ==================== HERO SECTION ==================== */
section.hero-section {
    background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%) !important;
    color: var(--primary) !important;
    padding: 56px 20px 28px !important;
    border-bottom: none;
}

.hero-content {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    color: var(--primary) !important;
    font-size: 40px !important;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.2px;
    margin-bottom: 12px;
}

.hero-description {
    color: #666 !important;
    font-size: 16px;
    margin-bottom: 22px;
}

.welcome-text { color: var(--primary); font-size: 18px; margin-bottom: 12px; }
.demo-text { color: #666; font-size: 14px; margin-top: 16px; }
.demo-text a { color: var(--primary); text-decoration: underline; font-weight: 600; }

/* Search */
.search-section { max-width: 620px; margin: 0 auto; }
.search-wrapper { max-width: 620px; margin: 0 auto; }
.search-box { display: flex; align-items: center; gap: 10px; }
.search-input {
    flex: 1; min-width: 0; background: #fff; border: 2px solid #e0e0e0;
    border-radius: 10px; padding: 14px 18px; font-size: 16px; outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.search-input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(0,31,63,0.08); }
.search-input::placeholder { color: #999; }
.search-button {
    display: inline-flex; align-items: center; gap: 8px; padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff; border: 0; border-radius: 10px; font-weight: 700; font-size: 15px;
    cursor: pointer; transition: transform 0.08s, box-shadow 0.2s; white-space: nowrap;
}
.search-button:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,31,63,0.3); }

/* ==================== SECTION HEADING (yeni modern) ==================== */
.section-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}
.section-heading-center { justify-content: center; text-align: center; flex-direction: column; gap: 4px; }
.section-heading-icon {
    width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: white; background: linear-gradient(135deg, #ff6b35, #f7931e); flex-shrink: 0;
}
.section-heading-icon.icon-kurum { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.section-heading-icon.icon-atama { background: linear-gradient(135deg, #10b981, #059669); }
.section-heading-icon.icon-haber { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.section-heading-title { font-size: 22px; font-weight: 700; color: var(--primary); margin: 0; }
.section-heading-desc { font-size: 14px; color: #888; margin: 2px 0 0; }
.section-heading-link {
    margin-left: auto; font-size: 14px; font-weight: 600; color: var(--primary);
    text-decoration: none; display: flex; align-items: center; gap: 4px; white-space: nowrap;
}
.section-heading-link:hover { color: var(--primary-light); }

/* ==================== GÜNDEMDEKI PROFİLLER ==================== */
.section-gundem-profiller { padding: 40px 0; background: #fff; }
.profil-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 14px;
}
.profil-card {
    display: flex; flex-direction: column; background: #fff; border: 1px solid #eee;
    border-radius: 12px; overflow: hidden; text-decoration: none; color: inherit;
    transition: all 0.25s;
}
.profil-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,31,63,0.12); border-color: var(--primary); }
.profil-card-photo {
    width: 100%; aspect-ratio: 4/5; overflow: hidden; background: #f0f4f8; position: relative;
}
.profil-card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.profil-card:hover .profil-card-photo img { transform: scale(1.05); }
.profil-card-placeholder {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    font-size: 48px; color: #ccc; background: linear-gradient(180deg, #f0f4f8, #e8ecf0);
}
.profil-card-info { padding: 12px; text-align: center; }
.profil-card-name { font-size: 13px; font-weight: 700; color: var(--primary); margin: 0 0 4px; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.profil-card-title { font-size: 11px; color: #888; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ==================== GÜNDEMDEKI KURUMLAR ==================== */
.section-gundem-kurumlar { padding: 40px 0; background: linear-gradient(180deg, #f0f4f8, #e8eef5); }
.kurum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 16px;
}
.kurum-card {
    display: flex; flex-direction: column; background: #fff;
    border: 1px solid #e0e4e8; border-radius: 12px; overflow: hidden;
    text-decoration: none; color: inherit; transition: all 0.25s;
}
.kurum-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,31,63,0.12); border-color: var(--primary); }
.kurum-card-logo {
    width: 100%; aspect-ratio: 5/4; background: #ffffff;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; padding: 12px;
}
.kurum-card-logo img { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform 0.3s; }
.kurum-card:hover .kurum-card-logo img { transform: scale(1.05); }
.kurum-card-logo-placeholder {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    font-size: 36px; color: #ccc;
}
.kurum-card-body { padding: 12px; text-align: center; background: #f0f2f5; flex: 1; }
.kurum-card-name { font-size: 13px; font-weight: 700; color: var(--primary); margin: 0 0 3px; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.kurum-card-type { font-size: 11px; color: #888; display: block; }
.kurum-card-il { font-size: 11px; color: #aaa; display: block; margin-top: 2px; }
.kurum-card-social { display: flex; justify-content: center; gap: 10px; font-size: 11px; color: #888; margin-top: 6px; }
.kurum-card-social i { font-size: 12px; }

/* ==================== SON ATAMALAR ==================== */
.section-son-atamalar {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #00335a 100%);
}
.section-son-atamalar .section-heading-title,
.section-son-atamalar .section-heading-desc { color: #fff; }
.heading-light .section-heading-desc { color: rgba(255,255,255,0.7); }
.atama-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 14px;
}
.atama-card {
    display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 16px;
    text-decoration: none; color: #fff; transition: all 0.25s; position: relative;
}
.atama-card:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); transform: translateX(4px); }
.atama-badge {
    position: absolute; top: 8px; right: 8px; background: #10b981; color: white;
    font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 6px;
    letter-spacing: 0.5px;
}
.atama-card-img { width: 56px; height: 70px; border-radius: 8px; overflow: hidden; background: rgba(255,255,255,0.1); flex-shrink: 0; border: 2px solid rgba(255,255,255,0.2); }
.atama-card-img img { width: 100%; height: 100%; object-fit: cover; }
.atama-card-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 22px; color: rgba(255,255,255,0.4); }
.atama-card-info { flex: 1; min-width: 0; }
.atama-card-name { font-size: 14px; font-weight: 700; margin: 0 0 4px; color: #fff; }
.atama-card-title { font-size: 12px; color: rgba(255,255,255,0.7); display: block; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.atama-card-kurum { font-size: 11px; color: rgba(255,255,255,0.5); display: block; margin-top: 4px; }
.atama-card-arrow { font-size: 16px; color: rgba(255,255,255,0.3); flex-shrink: 0; transition: color 0.2s; }
.atama-card:hover .atama-card-arrow { color: rgba(255,255,255,0.7); }

/* ==================== FEATURES SECTION ==================== */
.features-section { padding: 50px 0; background: #fff; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.feature-card {
    background: white; border: 1px solid #e0e0e0; border-radius: var(--card-radius);
    padding: 28px 22px; box-shadow: 0 1px 3px rgba(0,0,0,0.06); text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.feature-icon-wrap {
    width: 56px; height: 56px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center;
    font-size: 24px; color: var(--primary); background: rgba(0,31,63,0.06); margin-bottom: 14px;
}
.feature-title { color: var(--primary); font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.feature-description { color: #666; font-size: 14px; line-height: 1.5; }

/* ==================== STATS SECTION ==================== */
.stats-section { background: linear-gradient(180deg, #f0f4f8 0%, #e8eef5 100%); padding: 50px 0; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.stat-card {
    background: white; border: 1px solid #e0e0e0; border-radius: var(--card-radius);
    padding: 24px 16px; text-align: center; box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    transition: transform 0.2s;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.stat-icon-wrap {
    width: 48px; height: 48px; border-radius: 12px; display: inline-flex; align-items: center;
    justify-content: center; font-size: 22px; margin-bottom: 10px;
}
.stat-icon-red { background: #fce4ec; color: #e53935; }
.stat-icon-cyan { background: #e0f7fa; color: #00acc1; }
.stat-icon-dark { background: #e8eaf6; color: #1a1a2e; }
.stat-icon-orange { background: #fff3e0; color: #f57c00; }
.stat-value { display: block; font-size: 1.8rem; font-weight: 700; color: var(--primary); }
.stat-label { display: block; font-size: 0.85rem; color: #666; margin-top: 4px; }

/* ==================== SON HABERLER ==================== */
.section-son-haberler { padding: 40px 0; background: #fff; }
.haber-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
}
.haber-card {
    background: #fff; border: 1px solid #eee; border-radius: 12px; overflow: hidden;
    transition: all 0.25s;
}
.haber-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); border-color: var(--primary); }
.haber-card-img { position: relative; height: 170px; overflow: hidden; background: #f0f4f8; }
.haber-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.haber-card:hover .haber-card-img img { transform: scale(1.05); }
.haber-card-badge {
    position: absolute; top: 10px; left: 10px; background: var(--primary); color: white;
    font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 6px;
}
.haber-card-body { padding: 16px; }
.haber-card-title { font-size: 15px; font-weight: 700; color: var(--primary); margin: 0 0 8px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.haber-card-desc { font-size: 13px; color: #888; margin: 0 0 12px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.haber-card-meta { display: flex; gap: 14px; font-size: 12px; color: #aaa; }
.haber-card-meta i { margin-right: 4px; }

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: 60px 0; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    text-align: center;
}
.cta-content { max-width: 600px; margin: 0 auto; }
.cta-title { font-size: 28px; font-weight: 700; color: white; margin: 0 0 10px; }
.cta-desc { font-size: 16px; color: rgba(255,255,255,0.8); margin: 0 0 24px; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-btn {
    display: inline-flex; align-items: center; padding: 12px 28px; border-radius: 10px;
    font-weight: 700; font-size: 15px; text-decoration: none; transition: all 0.25s;
}
.cta-btn-primary { background: var(--accent); color: white; }
.cta-btn-primary:hover { background: #005bb5; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.cta-btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.5); }
.cta-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* ==================== CARDS ==================== */
.card {
    border-radius: var(--card-radius);
    transition: transform 0.2s, box-shadow 0.2s;
}

.hover-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
    border-color: var(--primary) !important;
}

/* ==================== BLURRED IMAGES ==================== */
.img-blur { filter: blur(8px); }
.img-blur-light { filter: blur(3px); }

/* ==================== TIER ACCESS CONTROL ==================== */
.tier-lock-box { background: #f8f9fa; border: 1px dashed #dee2e6; border-radius: 12px; padding: 16px; }
.tier-cta-compact { background: #f8f9fa; border-radius: 8px; padding: 8px 12px; border: 1px dashed #dee2e6; }
.btn-purple { background: #6f42c1; color: #fff; border-color: #6f42c1; }
.btn-purple:hover { background: #5a32a3; color: #fff; border-color: #5a32a3; }

/* Full card blur for guests */
.card-content-blur .card-body { filter: blur(5px); pointer-events: none; user-select: none; }
.card-content-blur { position: relative; overflow: hidden; }
.card-content-blur::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(255,255,255,0.3); border-radius: inherit; z-index: 1; }

/* ==================== PAGINATION ==================== */
.pagination .page-link {
    border-radius: 8px;
    margin: 0 2px;
    color: var(--primary);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* ==================== TABLES ==================== */
.table th { font-size: 0.85rem; font-weight: 600; white-space: nowrap; }
.table td { font-size: 0.85rem; vertical-align: middle; }

/* ==================== BADGES ==================== */
.badge { font-weight: 500; }
.bg-pink { background-color: #e91e8c; }
.bg-purple { background-color: #6f42c1; }

/* ==================== PRICING ==================== */
.pricing-card {
    border: 2px solid #dee2e6;
    transition: all 0.3s;
    border-radius: var(--card-radius);
}

.pricing-card:hover { border-color: var(--primary); }
.pricing-card.popular { border-color: var(--danger); }
.pricing-card .price { font-size: 2.5rem; font-weight: 700; color: var(--primary); }

/* ==================== AUTH PAGES ==================== */
.auth-container { max-width: 450px; margin: 40px auto; }

/* ==================== BUTTONS (Bootstrap override) ==================== */
.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-light) !important;
    border-color: var(--primary-light) !important;
}

.btn-outline-primary {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary) !important;
    color: white !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.text-primary {
    color: var(--primary) !important;
}

/* ==================== FOOTER ==================== */
footer.site-footer {
    background: var(--footer-bg) !important;
    padding: 16px 24px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    border-top: 1px solid rgba(255,255,255,0.06);
}

footer.site-footer .footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

/* Footer Brand (logo + copyright) */
footer.site-footer .footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

footer.site-footer .footer-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

footer.site-footer .footer-logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

footer.site-footer .footer-copy {
    color: rgba(255,255,255,0.45);
    font-size: 11px;
    white-space: nowrap;
}

/* Footer Links */
footer.site-footer .footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

footer.site-footer .footer-links a {
    color: rgba(255,255,255,0.6) !important;
    text-decoration: none !important;
    font-size: 11.5px;
    font-weight: 500;
    padding: 4px 7px;
    border-radius: 8px;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

footer.site-footer .footer-links a i {
    font-size: 12px;
    display: none;
    opacity: 0.7;
}

footer.site-footer .footer-links a:hover {
    color: #fff !important;
    background: rgba(255,255,255,0.08);
}

/* Footer Right Column */
footer.site-footer .footer-right-col {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-self: end;
}

/* Footer Social */
footer.site-footer .footer-social {
    display: flex;
    gap: 6px;
    align-items: center;
}

footer.site-footer .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7) !important;
    transition: all 0.25s;
    text-decoration: none !important;
    font-size: 14px;
}

footer.site-footer .footer-social a:hover {
    background: rgba(255,255,255,0.15);
    color: #fff !important;
    transform: translateY(-2px);
}

/* Footer Legal */
footer.site-footer .footer-legal {
    display: flex;
    align-items: center;
    gap: 8px;
}

footer.site-footer .footer-legal a {
    color: rgba(255,255,255,0.45) !important;
    text-decoration: none !important;
    font-size: 11px;
    font-weight: 500;
    transition: color 0.25s;
    white-space: nowrap;
}

footer.site-footer .footer-legal a:hover {
    color: rgba(255,255,255,0.8) !important;
}

footer.site-footer .footer-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
}

/* Legacy support */
footer.site-footer .footer-copyright {
    color: rgba(255,255,255,0.45);
    font-size: 12px;
}

footer.site-footer .footer-copyright a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

footer.site-footer .footer-copyright a:hover {
    color: #fff;
}

footer.site-footer .social-links {
    display: flex;
    gap: 6px;
    align-items: center;
}

footer.site-footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7) !important;
    transition: all 0.25s;
    text-decoration: none !important;
    font-size: 14px;
}

footer.site-footer .social-links a:hover {
    background: rgba(255,255,255,0.15);
    color: #fff !important;
    transform: translateY(-2px);
}

footer.site-footer .kvkk-btn {
    display: inline-block;
    color: rgba(255,255,255,0.6) !important;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 12px;
    text-decoration: none !important;
    white-space: nowrap;
    transition: all 0.25s;
    background: rgba(255,255,255,0.08);
}

footer.site-footer .kvkk-btn:hover {
    background: rgba(255,255,255,0.15);
    color: #fff !important;
}

/* ==================== ADMIN ==================== */
.admin-sidebar { min-height: calc(100vh - 56px); }
.admin-stat-card { border-left: 4px solid; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    header.main-header ul.nav-menu {
        gap: 2px;
    }
    header.main-header ul.nav-menu > li > a {
        padding: 6px 8px;
        font-size: 13px;
    }
    header.main-header .nav-dropdown-toggle {
        padding: 6px 8px;
        font-size: 13px;
    }
    header.main-header .header-container {
        gap: 12px;
    }
}

@media (max-width: 992px) {
    :root {
        --header-height: 70px;
    }

    header.main-header .header-container {
        padding: 0 15px;
    }

    header.main-header ul.nav-menu {
        display: none !important;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: #001229;
        flex-direction: column;
        padding: 12px !important;
        gap: 2px;
        box-shadow: 0 12px 40px rgba(0,0,0,0.3);
        z-index: 1060;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    header.main-header ul.nav-menu.active {
        display: flex !important;
    }

    header.main-header ul.nav-menu > li {
        width: 100%;
    }

    header.main-header ul.nav-menu > li > a {
        padding: 12px 14px;
        display: flex;
        border-bottom: none;
        border-radius: 10px;
    }

    header.main-header ul.nav-dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        border-radius: 10px;
        border-left: none;
        border: none;
        margin-left: 0;
        background: rgba(255,255,255,0.06);
        padding: 6px !important;
    }

    header.main-header ul.nav-dropdown-menu li a {
        color: rgba(255,255,255,0.7) !important;
    }

    header.main-header ul.nav-dropdown-menu li a:hover {
        color: #fff !important;
        background: rgba(255,255,255,0.08);
    }

    header.main-header ul.nav-dropdown-menu li a i {
        color: rgba(255,255,255,0.5);
    }

    header.main-header .mobile-toggle {
        display: flex !important;
    }

    /* Mobil: header butonları gizle, mobil section'ları göster */
    header.main-header .header-buttons {
        display: none !important;
    }

    header.main-header .mobile-user-section,
    header.main-header .mobile-auth-section {
        display: block !important;
        width: 100%;
        padding: 15px;
        background: rgba(255,255,255,0.06);
        border-bottom: none;
        margin-bottom: 4px;
        border-radius: 12px;
    }

    /* Mobil dropdown menüsü */
    header.main-header li.nav-dropdown {
        width: 100%;
    }

    header.main-header .nav-dropdown-toggle {
        display: flex;
        padding: 12px 14px;
        border-bottom: none;
        border-radius: 10px;
    }

    header.main-header ul.nav-dropdown-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    header.main-header li.nav-dropdown.active > ul.nav-dropdown-menu {
        max-height: 500px;
    }

    .hero-title {
        font-size: 28px !important;
    }

    .hero-description {
        font-size: 15px !important;
    }

    .search-section {
        max-width: 100% !important;
    }

    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .profil-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
    .kurum-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
    .atama-grid { grid-template-columns: 1fr; }
    .haber-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
    .section-heading-link { display: none; }

    footer.site-footer {
        padding: 6px 12px;
    }

    footer.site-footer .footer-container {
        grid-template-columns: auto 1fr;
        gap: 6px;
    }

    footer.site-footer .footer-links {
        display: none;
    }

    footer.site-footer .footer-social {
        display: none;
    }

    footer.site-footer .footer-logo-link {
        display: none;
    }

    footer.site-footer .footer-right-col {
        justify-self: end;
    }

    footer.site-footer .footer-copy {
        font-size: 10px;
    }

    footer.site-footer .footer-legal a {
        font-size: 10px;
    }

    footer.site-footer .footer-copyright {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    body { padding-bottom: 32px; }
    .features-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .profil-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
    .kurum-grid { grid-template-columns: repeat(2, 1fr); }
    .haber-grid { grid-template-columns: 1fr; }
    .search-box { flex-direction: column; }
    .search-input { width: 100%; }
    .search-button { width: 100%; justify-content: center; }
    .section-heading-title { font-size: 18px; }
    .cta-title { font-size: 22px; }
}

/* ==================== MISC ==================== */
.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fade-in {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #adb5bd; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #6c757d; }

.list-group-item { font-size: 0.9rem; }

/* Search wrapper (arama sayfası) */
.search-wrapper {
    display: flex;
    gap: 12px;
    align-items: stretch;
    max-width: 900px;
    margin: 20px auto 0;
}

.dash-hero .search-box {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    display: flex;
    flex: 1;
    overflow: hidden;
}

.dash-hero .search-box .search-input {
    flex: 1;
    padding: 0 24px;
    border: none;
    font-size: 16px;
    outline: none;
    color: #333;
    min-height: 56px;
}

.dash-hero .search-box .search-input::placeholder { color: #999; }

.dash-hero .search-box .search-button {
    padding: 0 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 56px;
}

.dash-hero .search-box .search-button:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-hover) 100%);
}

/* ============================================================
   DASHBOARD — Anasayfa Yeni Tasarım Stilleri
   Bloomberg / Reuters tarzı modern dashboard
   ============================================================ */

/* ==================== DASH HERO ==================== */
/* Arama Bölümü — Açık Zemin */
.dash-search-section {
    background: #f8fafc;
    color: #001f3f;
    padding: 24px 20px 20px;
    text-align: center;
    position: relative;
    border-bottom: none;
}
.dash-search-section-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.dash-search-title {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 4px;
    letter-spacing: -0.3px;
    color: #001f3f;
}
.dash-search-subtitle {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 14px;
    font-weight: 400;
}
.dash-welcome {
    color: #475569;
    font-size: 13px;
    margin: 0 0 8px;
}
.dash-demo-text {
    color: #64748b;
    font-size: 13px;
    margin: 14px 0 0;
}
.dash-demo-text a {
    color: #0074d9;
    text-decoration: underline;
}
.dash-demo-text a:hover {
    color: #001f3f;
}

/* Search Form */
.dash-search-wrap {
    max-width: 620px;
    margin: 0 auto;
}
.dash-search-form {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(0,31,63,0.06);
}
.dash-search-form:focus-within {
    border-color: #0074d9;
    box-shadow: 0 2px 12px rgba(0,116,217,0.15);
}
.dash-search-icon {
    color: #94a3b8;
    font-size: 18px;
    padding-left: 18px;
    flex-shrink: 0;
}
.dash-search-input {
    flex: 1;
    background: transparent !important;
    border: none !important;
    color: #001f3f;
    font-size: 14px;
    padding: 11px 14px;
    outline: none;
    min-width: 0;
}
.dash-search-input::placeholder {
    color: #94a3b8;
}
.dash-search-btn {
    padding: 9px 22px;
    background: linear-gradient(135deg, #0074d9, #0056b3);
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
    margin: 3px;
    border-radius: 8px;
}
.dash-search-btn:hover {
    background: linear-gradient(135deg, #0056b3, #003d80);
}

/* ==================== TICKER BAR ==================== */
.dash-ticker {
    background: #e3f2fd;
    border-bottom: 1px solid #bbdefb;
    overflow: hidden;
    padding: 10px 0;
    position: relative;
    margin-top: 0;
}
.dash-ticker::before,
.dash-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}
.dash-ticker::before {
    left: 0;
    background: linear-gradient(90deg, #e3f2fd 0%, transparent 100%);
}
.dash-ticker::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, #e3f2fd 100%);
}
.dash-ticker-track {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: tickerScroll 60s linear infinite;
    width: max-content;
}
.dash-ticker:hover .dash-ticker-track {
    animation-play-state: paused;
}
.dash-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1565c0;
    font-size: 13px;
    flex-shrink: 0;
}
@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==================== DASH SECTIONS ==================== */
.dash-section {
    padding: 44px 0;
}
.dash-section-gray {
    background: #f8fafc;
}
.dash-section-dark {
    background: linear-gradient(135deg, var(--primary) 0%, #00335a 100%);
}
.dash-section-dark .dash-section-title { color: #fff; }
.dash-section-dark .dash-section-desc { color: rgba(255,255,255,0.6); }
.dash-section-stats {
    background: linear-gradient(180deg, #f0f4f8, #e8eef5);
}

/* Section Head */
.dash-section-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}
.dash-section-head.heading-light .dash-section-desc {
    color: rgba(255,255,255,0.6);
}
.dash-section-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
}
.dash-section-icon.fire { background: linear-gradient(135deg, #ff6b35, #f7931e); }
.dash-section-icon.trophy { background: linear-gradient(135deg, #f59e0b, #d97706); }
.dash-section-icon.building { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.dash-section-icon.atama { background: linear-gradient(135deg, #10b981, #059669); }
.dash-section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}
.dash-section-desc {
    font-size: 14px;
    color: #888;
    margin: 2px 0 0;
}
.dash-section-link {
    margin-left: auto;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}
.dash-section-link:hover {
    color: var(--accent);
}

/* ==================== DASH CARDS (genel kart) ==================== */
.dash-card {
    background: #fff;
    border: 1px solid #e0e4e8;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.dash-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    background: #fafbfc;
}
.dash-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.dash-card-badge {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    padding: 3px 10px;
    border-radius: 20px;
}
.dash-card-live {
    font-size: 12px;
    font-weight: 600;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 5px;
    animation: livePulse 2s ease-in-out infinite;
}
.dash-card-live i {
    font-size: 8px;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.dash-card-body {
    padding: 18px 20px;
    flex: 1;
}
.dash-card-scroll {
    max-height: 560px;
    overflow-y: auto;
}

/* ==================== TWO COLUMN LAYOUT ==================== */
.dash-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}
.dash-two-col > * {
    min-width: 0;
    overflow: hidden;
}

/* ==================== GÜNDEM TABS ==================== */
.dash-gundem-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}
.dash-gundem-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    background: #fff;
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}
.dash-gundem-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.dash-gundem-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.dash-gundem-tab i { font-size: 15px; }
.dash-gundem-panel { display: none; }
.dash-gundem-panel.active { display: block; }

/* ==================== X TRENDLER (Gündem sekmesi) ==================== */
.dash-trend-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    max-width: 800px;
    margin: 0 auto;
}
.dash-trend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    background: #f8f9fa;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s, transform 0.15s;
    border: 1px solid transparent;
}
.dash-trend-item:hover {
    background: #e9ecef;
    transform: translateX(3px);
    border-color: #dee2e6;
}
.dash-trend-rank {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #6b7280;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}
.dash-trend-rank.top1 { background: #f59e0b; }
.dash-trend-rank.top2 { background: #9ca3af; }
.dash-trend-rank.top3 { background: #b45309; }
.dash-trend-info { flex: 1; min-width: 0; }
.dash-trend-name {
    font-weight: 600;
    font-size: 0.85rem;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dash-trend-volume {
    font-size: 0.7rem;
    color: #6b7280;
}
@media (max-width: 576px) {
    .dash-trend-grid { grid-template-columns: 1fr; }
    .dash-trend-item { padding: 8px 10px; }
}

/* ==================== PROFIL GRID (Gündemdeki Profiller) ==================== */
.dash-profil-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.dash-profil-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s;
    padding: 16px 10px 12px;
}
.dash-profil-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,31,63,0.12);
    border-color: var(--primary);
}
.dash-profil-photo {
    width: 110px;
    height: 138px;
    border-radius: 10px;
    overflow: hidden;
    background: #f0f4f8;
    position: relative;
    flex-shrink: 0;
    border: 2px solid #e8eef5;
}
.dash-profil-card:hover .dash-profil-photo {
    border-color: var(--primary);
}
.dash-profil-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.3s;
}
.dash-profil-card:hover .dash-profil-photo img {
    transform: scale(1.08);
}
.dash-profil-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #ccc;
    background: linear-gradient(180deg, #f0f4f8, #e8ecf0);
}
/* Kurum logoları için kare versiyon */
.dash-profil-photo-square {
    width: 110px;
    height: 110px;
    background: #fff;
}
/* ========== PARTİ BADGE RENKLERİ (Global) ========== */
.badge-parti-akp      { background-color: #f5a623 !important; color: #fff !important; }
.badge-parti-chp      { background-color: #cc0000 !important; color: #fff !important; }
.badge-parti-mhp      { background-color: #1a56db !important; color: #fff !important; }
.badge-parti-iyi      { background-color: #0099cc !important; color: #fff !important; }
.badge-parti-dem      { background-color: #7b2d8e !important; color: #fff !important; }
.badge-parti-saadet   { background-color: #28a745 !important; color: #fff !important; }
.badge-parti-tip      { background-color: #e63946 !important; color: #fff !important; }
.badge-parti-gelecek  { background-color: #17a2b8 !important; color: #fff !important; }
.badge-parti-deva     { background-color: #6610f2 !important; color: #fff !important; }
.badge-parti-yeniyol  { background-color: #2196F3 !important; color: #fff !important; }
.badge-parti-bagimsiz { background-color: #666666 !important; color: #fff !important; }
.badge-parti-bbp      { background-color: #c62828 !important; color: #fff !important; }
.badge-parti-yrp      { background-color: #4a148c !important; color: #fff !important; }
.badge-parti-hudapar  { background-color: #1b5e20 !important; color: #fff !important; }
.badge-parti-dsp      { background-color: #d32f2f !important; color: #fff !important; }
.badge-parti-dp       { background-color: #ef6c00 !important; color: #fff !important; }
.badge-parti-zafer    { background-color: #01579b !important; color: #fff !important; }
.badge-parti-diger    { background-color: #6c757d !important; color: #fff !important; }

.dash-profil-parti {
    position: absolute;
    bottom: 4px;
    left: 4px;
    background: rgba(0,0,0,0.65);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}
/* Anasayfa profil kartı parti overlay renkleri */
.dash-profil-parti.badge-parti-akp  { background: rgba(245,166,35,0.85); }
.dash-profil-parti.badge-parti-chp  { background: rgba(204,0,0,0.85); }
.dash-profil-parti.badge-parti-mhp  { background: rgba(26,86,219,0.85); }
.dash-profil-parti.badge-parti-iyi  { background: rgba(0,153,204,0.85); }
.dash-profil-parti.badge-parti-dem  { background: rgba(123,45,142,0.85); }
.dash-profil-parti.badge-parti-saadet{ background: rgba(40,167,69,0.85); }
.dash-profil-parti.badge-parti-diger { background: rgba(0,0,0,0.65); }
.dash-profil-info {
    padding: 10px 0 0;
    text-align: center;
    width: 100%;
}
.dash-profil-name {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 2px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.dash-profil-title {
    font-size: 11px;
    color: #888;
    display: block;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.dash-profil-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: #666;
    background: #f0f4f8;
    padding: 2px 8px;
    border-radius: 6px;
    margin-top: 6px;
}

/* ==================== MAP (İl Dağılımı) ==================== */
.dash-map-wrap {
    width: 100%;
}
.dash-map-fullwidth {
    max-width: 900px;
    margin: 0 auto;
}
.dash-map-fullwidth .dash-svg-harita-container {
    width: 100%;
}
.dash-map-fullwidth .dash-svg-harita-container svg {
    width: 100%;
    height: auto;
}
.dash-map-list-two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 24px;
    padding-top: 12px;
    border-top: 1px solid #eef2f7;
    max-width: 700px;
    margin: 0 auto;
}
.dash-map-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.dash-map-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
}
.dash-map-item:hover {
    background: #f0f4f8;
}
.dash-map-rank {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: #eef2f7;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dash-map-item:nth-child(1) .dash-map-rank { background: var(--primary); color: #fff; }
.dash-map-item:nth-child(2) .dash-map-rank { background: #003366; color: #fff; }
.dash-map-item:nth-child(3) .dash-map-rank { background: #004d99; color: #fff; }
.dash-map-il {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    width: 80px;
    flex-shrink: 0;
}
.dash-map-bar {
    flex: 1;
    height: 8px;
    background: #eef2f7;
    border-radius: 4px;
    overflow: hidden;
    min-width: 60px;
}
.dash-map-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
    transition: width 0.6s ease;
}
.dash-map-count {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    width: 42px;
    text-align: right;
    flex-shrink: 0;
}

/* ==================== VAAT TAKİP ==================== */
.dash-vaat-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.dash-vaat-item { }
.dash-vaat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}
.dash-vaat-kat {
    font-size: 13px;
    font-weight: 700;
}
.dash-vaat-sayi {
    font-size: 13px;
    font-weight: 700;
    color: #555;
}
.dash-vaat-bar {
    height: 10px;
    background: #eef2f7;
    border-radius: 5px;
    overflow: hidden;
}
.dash-vaat-bar-fill {
    height: 100%;
    border-radius: 5px;
    transition: width 0.8s ease;
}
.dash-vaat-pct {
    font-size: 11px;
    color: #999;
    margin-top: 2px;
    display: block;
}

/* ==================== CHART CONTAINERS ==================== */
.dash-chart-container {
    position: relative;
    width: 100%;
    height: 320px;
}
.dash-chart-doughnut {
    height: 300px;
    max-width: 400px;
    margin: 0 auto;
}

/* ==================== CHART CAROUSEL ==================== */
#analizGrafikleriSection .dash-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
#analizGrafikleriSection .dash-section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
#analizGrafikleriSection .dash-section-title i {
    color: var(--accent);
}
.dash-chart-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    width: 100%;
    max-width: 100%;
}
.dash-chart-carousel-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    width: 100%;
}
.dash-chart-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
    overflow: hidden;
}
.dash-chart-slide.active {
    opacity: 1;
    pointer-events: auto;
}
/* Carousel Navigation */
.dash-carousel-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}
.dash-carousel-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #e0e4e8;
    background: #fff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.dash-carousel-btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: scale(1.08);
    box-shadow: 0 3px 8px rgba(0,114,198,0.25);
}
.dash-carousel-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}
.dash-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.dash-carousel-dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 5px;
    box-shadow: 0 0 6px rgba(0,114,198,0.35);
}
.dash-carousel-dot:hover:not(.active) {
    background: #9ca3af;
    transform: scale(1.15);
}
/* Progress bar */
.dash-carousel-progress {
    height: 3px;
    background: #e5e7eb;
    border-radius: 3px;
    margin-top: 18px;
    overflow: hidden;
}
.dash-carousel-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #38bdf8);
    border-radius: 3px;
    width: 0%;
    transition: width 0.05s linear;
}
@media (max-width: 992px) {
    .dash-carousel-nav { gap: 8px; }
    .dash-carousel-btn { width: 32px; height: 32px; font-size: 12px; }
    #analizGrafikleriSection .dash-section-head { flex-wrap: wrap; gap: 12px; }
    #analizGrafikleriSection .dash-section-title { font-size: 17px; }
}
@media (max-width: 480px) {
    .dash-carousel-dots { gap: 5px; }
    .dash-carousel-dot { width: 8px; height: 8px; }
    .dash-carousel-dot.active { width: 20px; }
    #analizGrafikleriSection .dash-section-title { font-size: 15px; }
}

/* ==================== TWEET AKIŞI ==================== */
.dash-tweet {
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}
.dash-tweet:last-child {
    border-bottom: none;
}
.dash-tweet-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.dash-tweet-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.dash-tweet-avatar-ph {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #e8ecf0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 18px;
    flex-shrink: 0;
}
.dash-tweet-author {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.dash-tweet-author strong {
    font-size: 13px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dash-tweet-author span {
    font-size: 12px;
    color: #999;
}
.dash-tweet-text {
    font-size: 14px;
    color: #444;
    margin: 0 0 8px;
    line-height: 1.5;
    word-break: break-word;
}
.dash-tweet-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: #999;
}
.dash-tweet-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}
.dash-tweet-meta .bi-heart { color: #e0245e; }
.dash-tweet-meta .bi-repeat { color: #17bf63; }
.dash-tweet-meta .bi-eye { color: #1da1f2; }

/* ==================== HABERLER ==================== */
.dash-haber-featured {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 16px;
    position: relative;
    background: #f0f4f8;
}
.dash-haber-featured-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.dash-haber-featured-body {
    padding: 14px;
}
.dash-haber-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 6px;
    margin-bottom: 6px;
}
.dash-haber-featured-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 6px;
    line-height: 1.4;
}
.dash-haber-meta {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 6px;
}
.dash-haber-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.dash-haber-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}
.dash-haber-item:last-child {
    border-bottom: none;
}
.dash-haber-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px;
    line-height: 1.4;
}
.dash-haber-item-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: #aaa;
}

/* ==================== PERFORMANS LİDERLİK TABLOSU ==================== */
.dash-leader-table {
    background: #fff;
    border: 1px solid #e0e4e8;
    border-radius: 14px;
    overflow: hidden;
}
.dash-leader-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}
.dash-leader-row:last-child {
    border-bottom: none;
}
.dash-leader-row:hover {
    background: #f8fafc;
}
.dash-leader-top {
    background: #fafbfc;
}
.dash-leader-rank {
    width: 32px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #666;
    flex-shrink: 0;
}
.dash-leader-photo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f0f4f8;
}
.dash-leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dash-leader-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 20px;
}
.dash-leader-info {
    flex: 1;
    min-width: 0;
}
.dash-leader-info strong {
    display: block;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dash-leader-info span {
    display: block;
    font-size: 12px;
    color: #999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dash-leader-score {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    width: 180px;
}
.dash-leader-bar {
    flex: 1;
    height: 8px;
    background: #eef2f7;
    border-radius: 4px;
    overflow: hidden;
}
.dash-leader-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    border-radius: 4px;
    transition: width 0.8s ease;
}
.dash-leader-pts {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    width: 42px;
    text-align: right;
}

/* ==================== KURUM GRID (Dashboard) ==================== */
.dash-kurum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}
.dash-kurum-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border: 1px solid #e0e4e8;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s;
    padding: 16px 10px 0;
}
.dash-kurum-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,31,63,0.12);
    border-color: var(--primary);
}
.dash-kurum-logo {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8px;
    border: 2px solid #e8eef5;
    flex-shrink: 0;
}
.dash-kurum-card:hover .dash-kurum-logo {
    border-color: var(--primary);
}
.dash-kurum-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}
.dash-kurum-card:hover .dash-kurum-logo img {
    transform: scale(1.08);
}
.dash-kurum-logo-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ccc;
}
.dash-kurum-body {
    padding: 10px 0 12px;
    text-align: center;
    flex: 1;
    width: 100%;
}
.dash-kurum-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 3px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.dash-kurum-type {
    font-size: 11px;
    color: #888;
    display: block;
}
.dash-kurum-il {
    font-size: 11px;
    color: #aaa;
    display: block;
    margin-top: 2px;
}
.dash-kurum-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 11px;
    color: #888;
    margin-top: 6px;
}

/* ==================== ATAMALAR (Dashboard Dark) ==================== */
.dash-atama-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 14px;
}
.dash-atama-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 16px;
    text-decoration: none;
    color: #fff;
    transition: all 0.25s;
    position: relative;
}
.dash-atama-card:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.3);
    transform: translateX(4px);
    color: #fff;
}
.dash-atama-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #10b981;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}
.dash-atama-img {
    width: 56px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.2);
}
.dash-atama-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.dash-atama-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: rgba(255,255,255,0.4);
}
.dash-atama-info {
    flex: 1;
    min-width: 0;
}
.dash-atama-info h6 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 4px;
    color: #fff;
}
.dash-atama-info span {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dash-atama-kurum {
    color: rgba(255,255,255,0.5) !important;
    margin-top: 4px;
}

/* ==================== İSTATİSTİKLER ==================== */
.dash-stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.dash-stat {
    background: #fff;
    border: 1px solid #e0e4e8;
    border-radius: 14px;
    padding: 22px 16px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    min-width: 0;
    overflow: hidden;
}
.dash-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.dash-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 12px;
}
.dash-stat-icon.bg-red { background: linear-gradient(135deg, #fce4ec, #ffcdd2); color: #e53935; }
.dash-stat-icon.bg-blue { background: linear-gradient(135deg, #e3f2fd, #bbdefb); color: #1565c0; }
.dash-stat-icon.bg-dark { background: linear-gradient(135deg, #e8eaf6, #c5cae9); color: #1a1a2e; }
.dash-stat-icon.bg-orange { background: linear-gradient(135deg, #fff3e0, #ffe0b2); color: #f57c00; }
.dash-stat-icon.bg-purple { background: linear-gradient(135deg, #f3e5f5, #e1bee7); color: #7b1fa2; }
.dash-stat-icon.bg-cyan { background: linear-gradient(135deg, #e0f7fa, #b2ebf2); color: #00838f; }
.dash-stat-val {
    display: block;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    word-break: break-word;
}
.dash-stat-label {
    display: block;
    font-size: 13px;
    color: #888;
    margin-top: 4px;
    font-weight: 500;
}

/* ==================== CTA (Dashboard) ==================== */
.dash-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    text-align: center;
}
.dash-cta-inner {
    max-width: 600px;
    margin: 0 auto;
}
.dash-cta-inner h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}
.dash-cta-inner p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin: 0 0 24px;
}
.dash-cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.dash-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s;
}
.dash-cta-btn.primary {
    background: var(--accent);
    color: #fff;
}
.dash-cta-btn.primary:hover {
    background: #005bb5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.dash-cta-btn.outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}
.dash-cta-btn.outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

/* ==================== DUYURULAR ==================== */
.dash-duyurular {
    padding: 12px 0 0;
}

/* ==================== SVG TÜRKİYE HARİTASI ==================== */
.dash-svg-harita-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-bottom: 12px;
}
.dash-svg-harita-container svg {
    width: 100%;
    height: auto;
    display: block;
}
.dash-svg-harita-container svg g g {
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
}
.dash-svg-harita-container svg g g path {
    fill: #001f3f;
    stroke: #ffffff;
    stroke-width: 0.6;
    transition: fill 0.25s ease, stroke-width 0.2s ease, filter 0.25s ease;
}
.dash-svg-harita-container svg g g:hover path {
    fill: #3b82f6;
    -webkit-filter: brightness(1.3) drop-shadow(0 0 4px rgba(59, 130, 246, 0.5));
    filter: brightness(1.3) drop-shadow(0 0 4px rgba(59, 130, 246, 0.5));
    stroke: #fff;
    stroke-width: 1.2;
}
.dash-svg-harita-container svg g g.harita-active path {
    fill: #f59e0b;
}
.dash-svg-harita-container svg g g.harita-has-data path {
    /* renk JS tarafından dinamik set edilecek */
}
.dash-svg-harita-container svg g g.harita-has-data:hover path {
    fill: #f59e0b !important;
    -webkit-filter: brightness(1.2) drop-shadow(0 0 6px rgba(245, 158, 11, 0.6));
    filter: brightness(1.2) drop-shadow(0 0 6px rgba(245, 158, 11, 0.6));
    stroke: #fff;
    stroke-width: 1.5;
}
/* Harita ipucu notu */
.dash-map-hint {
    text-align: center;
    font-size: 12px;
    color: #6b7280;
    margin: 8px 0 4px;
    padding: 0;
}
.dash-map-hint i {
    margin-right: 4px;
    color: #f59e0b;
}

/* Harita Tooltip */
.dash-harita-tooltip {
    position: absolute;
    background: rgba(0, 31, 63, 0.92);
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    pointer-events: none;
    z-index: 100;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: opacity 0.15s;
}
.dash-harita-tooltip strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}
.dash-harita-tooltip span {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
}

/* (Kaldırıldı: dash-harita-tabs, dash-profil-top3, dash-profil-rank) */

/* Harita Altı Kompakt İl Listesi */
.dash-map-list-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 12px;
    padding-top: 8px;
    border-top: 1px solid #eef2f7;
}
.dash-map-item-compact {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
    text-decoration: none;
    color: inherit;
    font-size: 12px;
    transition: background 0.2s;
    border-radius: 4px;
}
.dash-map-item-compact:hover {
    background: #f0f4f8;
    color: var(--primary);
}
.dash-map-item-compact .dash-map-rank {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #eef2f7;
    color: #666;
    font-size: 10px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dash-map-item-compact .dash-map-il {
    font-weight: 700;
    color: #1a202c;
    min-width: 60px;
}
.dash-map-bar-compact {
    flex: 1;
    height: 6px;
    background: rgba(0,0,0,.1);
    border-radius: 3px;
    overflow: hidden;
    min-width: 30px;
}
.dash-map-bar-compact span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
}
.dash-map-item-compact .dash-map-count {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    min-width: 30px;
    text-align: right;
}

/* ==================== TWEET GRİD ==================== */
.dash-tweet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.dash-tweet-grid .dash-tweet {
    border: 1px solid #eef2f7;
    border-radius: 10px;
    padding: 14px;
    border-bottom: 1px solid #eef2f7;
}
.dash-tweet-grid .dash-tweet:last-child {
    border-bottom: 1px solid #eef2f7;
}

/* ==================== KURUM HABER BADGE ==================== */
.dash-kurum-haber {
    display: inline-block;
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    color: #e65100;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 6px;
    margin-top: 4px;
}

/* ==================== RESPONSIVE — Dashboard ==================== */
@media (max-width: 992px) {
    .dash-search-section { padding: 20px 16px 16px; }
    .dash-search-title { font-size: 20px; }
    .dash-two-col { grid-template-columns: 1fr; }
    .dash-chart-carousel, .dash-chart-carousel-track, .dash-chart-slide { max-width: 100%; overflow: hidden; }
    .dash-leader-score { width: 140px; }
    .dash-atama-grid { grid-template-columns: 1fr; }
    .dash-profil-grid { grid-template-columns: repeat(3, 1fr); }
    .dash-kurum-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
    .dash-kurum-card:nth-child(n+7) { display: none; }
    .dash-stats-grid { grid-template-columns: repeat(3, 1fr); }
    .dash-tweet-grid { grid-template-columns: 1fr; }
    .dash-map-list-compact { grid-template-columns: 1fr; }
    .dash-map-list-two-col { grid-template-columns: 1fr; }
    .dash-chart-container { height: 280px; }
}

@media (max-width: 768px) {
    .dash-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .dash-stat-val { font-size: 1.4rem; }
}

@media (max-width: 480px) {
    .dash-search-section { padding: 16px 12px 14px; }
    .dash-search-title { font-size: 18px; }
    .dash-search-subtitle { font-size: 12px; }
    .dash-search-btn { padding: 8px 16px; font-size: 12px; }
    .dash-section { padding: 30px 0; }
    .dash-section-title { font-size: 18px; }
    .dash-profil-grid { grid-template-columns: repeat(2, 1fr); }
    .dash-kurum-grid { grid-template-columns: repeat(2, 1fr); }
    .dash-kurum-card:nth-child(n+5) { display: none; }
    .dash-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .dash-stat-val { font-size: 1.3rem; }
    .dash-stat { padding: 16px 10px; }
    .dash-stat-icon { width: 42px; height: 42px; font-size: 20px; margin-bottom: 8px; }
    .dash-leader-score { width: 100px; }
    .dash-leader-info strong { font-size: 13px; }
    .dash-cta-inner h3 { font-size: 22px; }
    .dash-ticker-item { font-size: 12px; }
    .dash-map-il { width: 60px; font-size: 12px; }
    .dash-chart-container { height: 240px; }
    .dash-chart-doughnut { height: 260px; }
    .dash-gundem-tabs { flex-wrap: wrap; }
    .dash-map-bar { min-width: 40px; }
    .dash-tweet-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Global Foto/Logo Format Sınıfları
   - Profil fotoğrafları: 4:5 dikdörtgen (border-radius: 8px)
   - Kurum logoları: kare (border-radius: 8px)
   - Hiçbir yerde oval/rounded-circle kullanılmayacak
   ============================================================ */

/* Profil Fotoğrafı - 4:5 Dikdörtgen */
.profil-foto {
    border-radius: 8px;
    object-fit: cover;
    object-position: top center;
}
.profil-foto-sm { width: 44px; height: 55px; }
.profil-foto-md { width: 56px; height: 70px; }
.profil-foto-lg { width: 64px; height: 80px; }
.profil-foto-xl { width: 80px; height: 100px; }
.profil-foto-xxl { width: 120px; height: 150px; }

/* Profil Placeholder - 4:5 Dikdörtgen */
.profil-placeholder {
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.profil-placeholder-sm { width: 44px; height: 55px; }
.profil-placeholder-md { width: 56px; height: 70px; }
.profil-placeholder-lg { width: 64px; height: 80px; }
.profil-placeholder-xl { width: 80px; height: 100px; }
.profil-placeholder-xxl { width: 120px; height: 150px; }

/* Kurum Logosu - Kare */
.kurum-logo {
    border-radius: 8px;
    object-fit: contain;
    background: #f8f9fa;
    padding: 4px;
}
.kurum-logo-sm { width: 44px; height: 44px; }
.kurum-logo-md { width: 50px; height: 50px; }
.kurum-logo-lg { width: 56px; height: 56px; }

/* Kurum Logo Placeholder - Kare */
.kurum-logo-placeholder {
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #e9ecef;
}
.kurum-logo-placeholder-sm { width: 44px; height: 44px; }
.kurum-logo-placeholder-md { width: 50px; height: 50px; }
.kurum-logo-placeholder-lg { width: 56px; height: 56px; }

/* ============================================================
   DETAY SAYFASI — Profesyonel Kişi Profili
   ============================================================ */

/* ===== HEADER SECTION ===== */
.detay-header {
    background: linear-gradient(160deg, #0a1628 0%, #152238 40%, #1e3a5f 100%);
    padding: 40px 0 32px;
    position: relative;
    overflow: hidden;
}
.detay-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(78,130,200,0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* Geri Butonu */
.detay-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 14px;
    transition: color 0.2s;
    position: relative;
    z-index: 1;
}
.detay-back-btn:hover { color: #fff; }
.detay-back-btn i { font-size: 18px; }

.detay-header-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    position: relative;
    z-index: 1;
    flex-wrap: nowrap;
}

/* Foto */
.detay-foto-wrap {
    flex-shrink: 0;
}
.detay-foto {
    width: 140px;
    height: 175px;
    border-radius: 14px;
    object-fit: cover;
    object-position: top center;
    border: 3px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.detay-foto-placeholder {
    width: 140px;
    height: 175px;
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    border: 3px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: rgba(255,255,255,0.3);
}

/* Header Info */
.detay-header-info {
    flex: 1;
    min-width: 0;
}
.detay-name-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.detay-name {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}
.detay-verified {
    color: #1d9bf0;
    font-size: 22px;
    display: inline-flex;
}
.detay-unvan {
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    margin: 4px 0 0;
    font-weight: 500;
}
.detay-kurum {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    margin: 6px 0 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.detay-kurum a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
}
.detay-kurum a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Etiketler / Yetkinlikler - Özgeçmiş içinde renkli badges */
.detay-yetkinlikler {
    margin-bottom: 20px;
    padding: 18px 20px;
    background: #f8f9fb;
    border-radius: 12px;
    border-left: 4px solid #0d6efd;
}
.detay-yetkinlikler-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.detay-etiket-renk {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: var(--etiket-renk, #6c757d);
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    cursor: pointer;
    letter-spacing: 0.2px;
}
.detay-etiket-renk .etiket-svg-icon {
    display: inline-flex;
    margin-right: 5px;
    flex-shrink: 0;
}
.detay-etiket-renk .etiket-svg-icon svg {
    width: 16px;
    height: 16px;
    fill: #fff !important;
}
.detay-etiket-renk:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    color: #fff;
    filter: brightness(1.12);
}

/* Sosyal Medya Butonları */
.detay-social-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.detay-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    transition: all 0.25s;
}
.detay-social-x { background: #1a1a2e; }
.detay-social-x:hover { background: #000; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.3); color: #fff; }
.detay-social-ig { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
.detay-social-ig:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(221,42,123,0.4); color: #fff; }
.detay-social-li { background: #0077b5; }
.detay-social-li:hover { background: #005e94; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,119,181,0.4); color: #fff; }
.detay-social-ns { background: linear-gradient(135deg, #07d0e0, #324bff); }
.detay-social-ns:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(50,75,255,0.4); color: #fff; }

.detay-social-lock {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
}
.detay-social-lock:hover { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); }

.detay-share-btn,
.detay-fav-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.detay-share-btn:hover,
.detay-fav-btn:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}
.detay-fav-btn.active {
    background: rgba(255,65,54,0.2);
    border-color: rgba(255,65,54,0.4);
    color: #ff6b6b;
}

/* ===== BEGENİ/BEGENMEME BUTONLARI ===== */
.detay-begeni-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0;
    margin-left: 4px;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
    overflow: hidden;
    vertical-align: middle;
}
.detay-begeni-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    line-height: 1;
}
.detay-begeni-btn:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}
.detay-like-btn {
    border-right: 1px solid rgba(255,255,255,0.12);
}
.detay-like-btn.active {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}
.detay-like-btn.active:hover {
    background: rgba(34, 197, 94, 0.3);
}
.detay-dislike-btn.active {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
}
.detay-dislike-btn.active:hover {
    background: rgba(239, 68, 68, 0.3);
}
.begeni-count {
    font-size: 12px;
    font-weight: 600;
    min-width: 14px;
    text-align: center;
}
.detay-begeni-btn i {
    font-size: 16px;
    line-height: 1;
}

/* === Anasayfa Begeni Butonlari === */
/* Üst bant slider kartları */
.ub-beg{display:flex;gap:6px;justify-content:center;margin-top:6px}
.ub-beg-btn{background:rgba(255,255,255,.1);border:none;color:rgba(255,255,255,.55);font-size:.65rem;font-weight:600;padding:3px 10px;border-radius:10px;cursor:pointer;display:inline-flex;align-items:center;gap:3px;transition:all .2s;line-height:1}
.ub-beg-btn:hover{background:rgba(255,255,255,.2);color:#fff}
.ub-beg-btn i{font-size:.68rem}
.ub-beg-btn.active.ub-beg-like{background:rgba(34,197,94,.25);color:#4ade80}
.ub-beg-btn.active.ub-beg-dislike{background:rgba(239,68,68,.25);color:#f87171}
/* Kart listesi (buildPersonCard) */
.hp-beg-wrap{display:flex;flex-direction:column;align-items:center;gap:3px;margin-left:auto;padding-left:8px;flex-shrink:0}
.hp-beg-btn{background:rgba(0,0,0,.04);border:1px solid rgba(0,0,0,.08);color:#94a3b8;font-size:.72rem;font-weight:600;padding:4px 8px;border-radius:8px;cursor:pointer;display:inline-flex;align-items:center;gap:3px;transition:all .2s;line-height:1}
.hp-beg-btn:hover{background:rgba(0,0,0,.08);color:#475569}
.hp-beg-btn i{font-size:.74rem}
.hp-beg-btn.active.hp-beg-like{background:rgba(34,197,94,.12);color:#16a34a;border-color:rgba(34,197,94,.2)}
.hp-beg-btn.active.hp-beg-dislike{background:rgba(239,68,68,.12);color:#dc2626;border-color:rgba(239,68,68,.2)}

/* Paylaş Modal */
.share-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}
.share-modal-content {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    max-width: 340px;
    width: 85%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: shareSlideUp 0.3s ease;
}
@keyframes shareSlideUp {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.share-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}
.share-modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #001f3f;
    margin: 0;
}
.share-close-btn {
    background: #f8f9fa;
    border: none;
    font-size: 20px;
    color: #6c757d;
    cursor: pointer;
    width: 30px; height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
    line-height: 1;
}
.share-close-btn:hover {
    background: #001f3f;
    color: #fff;
    transform: rotate(90deg);
}
.share-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 6px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #212529;
    text-align: center;
}
.share-option:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}
.share-option svg {
    width: 24px; height: 24px;
    flex-shrink: 0;
}
.share-option-label {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
}
.share-whatsapp:hover { border-color: #25D366; }
.share-whatsapp svg { fill: #25D366; }
.share-twitter:hover { border-color: #000; }
.share-twitter svg { fill: #000; }
.share-facebook:hover { border-color: #1877F2; }
.share-facebook svg { fill: #1877F2; }
.share-linkedin:hover { border-color: #0A66C2; }
.share-linkedin svg { fill: #0A66C2; }
.share-instagram:hover { border-color: #E4405F; }
.share-instagram svg { fill: #E4405F; }
.share-copy:hover { border-color: #6c757d; }
.share-copy svg { fill: #6c757d; }

/* Paylaş toast bildirimi */
.share-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #28a745;
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    z-index: 100000;
    box-shadow: 0 4px 12px rgba(40,167,69,0.4);
    animation: shareToastAnim 2.5s ease forwards;
}
@keyframes shareToastAnim {
    0%,100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
    10%,85% { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@media (max-width: 480px) {
    .share-modal-content { padding: 16px; max-width: 300px; }
    .share-options { grid-template-columns: repeat(3, 1fr); gap: 6px; }
    .share-option { padding: 10px 4px; gap: 4px; }
    .share-option svg { width: 22px; height: 22px; }
    .share-option-label { font-size: 10px; }
    .share-modal-title { font-size: 16px; }
}

/* Header Right: Search + Stats */
.detay-header-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    max-width: 280px;
    margin-left: auto;
}
.detay-search-form {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 10px;
    padding: 5px 10px;
    gap: 6px;
    backdrop-filter: blur(4px);
}
.detay-search-form i {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    flex-shrink: 0;
}
.detay-search-form input {
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 0.85rem;
    flex: 1;
    min-width: 0;
    padding: 4px 0;
}
.detay-search-form input::placeholder { color: rgba(255,255,255,0.45); }
.detay-search-form button {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 4px 14px;
    border-radius: 7px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s;
}
.detay-search-form button:hover { background: rgba(255,255,255,0.25); }

/* Header Stats */
.detay-header-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.detay-stat-box {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 10px 14px;
    text-align: center;
    min-width: 0;
    backdrop-filter: blur(4px);
}
.detay-stat-val {
    display: block;
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}
.detay-stat-label {
    display: block;
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    margin-top: 2px;
}

/* ===== ANA İÇERİK LAYOUT ===== */
.detay-content {
    padding: 28px 0 40px;
}
.detay-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
    align-items: start;
}

/* ===== SIDEBAR ===== */
.detay-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Card Genel */
.detay-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e8ecf0;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.detay-card-header {
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    border-bottom: 1px solid #f0f2f5;
    display: flex;
    align-items: center;
    gap: 8px;
}
.detay-card-header i {
    font-size: 16px;
    color: var(--accent);
}
.detay-card-body {
    padding: 16px 18px;
}
.detay-card-body.p-0 {
    padding: 0;
}

/* Info List */
.detay-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.detay-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}
.detay-info-list li:last-child { border-bottom: none; }
.detay-info-list li > i {
    font-size: 16px;
    color: var(--accent);
    margin-top: 2px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}
.detay-info-label {
    display: block;
    font-size: 11px;
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.detay-info-val {
    display: block;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    margin-top: 1px;
}
.detay-info-empty {
    text-align: center;
    color: #999;
    font-size: 13px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

/* Lock Box */
.detay-lock-box {
    text-align: center;
    padding: 16px 12px;
}
.detay-lock-box > i {
    font-size: 32px;
    color: #ccc;
    display: block;
    margin-bottom: 8px;
}
.detay-lock-box p {
    font-size: 13px;
    color: #888;
    margin: 0 0 12px;
}
.detay-upgrade-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.detay-upgrade-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,31,63,0.3);
    color: #fff;
}

/* Kurum Box */
.detay-kurum-box {
    display: flex;
    align-items: center;
    gap: 14px;
}
.detay-kurum-logo {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: contain;
    background: #f8f9fa;
    padding: 4px;
    border: 1px solid #e8ecf0;
    flex-shrink: 0;
}
.detay-kurum-name {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    line-height: 1.3;
}
.detay-kurum-name:hover { text-decoration: underline; color: var(--primary); }
.detay-kurum-type {
    display: block;
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}
.detay-kurum-il {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #aaa;
    margin-top: 2px;
}

/* Benzer Kişiler */
.detay-benzer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-bottom: 1px solid #f5f5f5;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
}
.detay-benzer-item:last-child { border-bottom: none; }
.detay-benzer-item:hover { background: #f8f9fb; }
.detay-benzer-img {
    width: 40px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    object-position: top center;
    flex-shrink: 0;
}
.detay-benzer-ph {
    width: 40px;
    height: 50px;
    border-radius: 8px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #aaa;
    flex-shrink: 0;
}
.detay-benzer-name {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.3;
}
.detay-benzer-unvan {
    display: block;
    font-size: 11px;
    color: #888;
    margin-top: 2px;
    line-height: 1.3;
}

/* ===== TAB SİSTEMİ ===== */
.detay-main {
    min-width: 0;
}
.detay-tabs {
    display: flex;
    gap: 4px;
    background: #fff;
    border-radius: 14px 14px 0 0;
    border: 1px solid #e8ecf0;
    border-bottom: none;
    padding: 6px 6px 0;
    overflow-x: auto;
}
.detay-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #888;
    background: transparent;
    border: none;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    position: relative;
}
.detay-tab:hover {
    color: var(--primary);
    background: #f8f9fb;
}
.detay-tab.active {
    color: var(--primary);
    background: #fff;
}
.detay-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px 3px 0 0;
}
.detay-tab-count {
    font-size: 11px;
    background: #e8ecf0;
    color: #666;
    padding: 1px 8px;
    border-radius: 10px;
    font-weight: 700;
}
.detay-tab.active .detay-tab-count {
    background: var(--accent);
    color: #fff;
}

/* Tab İçerikleri */
.detay-tab-content {
    background: #fff;
    border-radius: 0 0 14px 14px;
    border: 1px solid #e8ecf0;
    border-top: 1px solid #f0f2f5;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.detay-tab-pane {
    display: none;
    padding: 24px;
}
.detay-tab-pane.active {
    display: block;
}

/* Özgeçmiş */
.detay-ozgecmis {
    position: relative;
}
.detay-ozgecmis-text {
    font-size: 15px;
    line-height: 1.75;
    color: #444;
}

/* Doğum Bilgileri */
.detay-dogum-bilgi {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
    padding: 12px 16px;
    background: #f8f9fb;
    border-radius: 10px;
    border-left: 3px solid var(--accent);
}
.detay-dogum-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #444;
}
.detay-dogum-item i {
    font-size: 15px;
    color: var(--accent);
}
.detay-dogum-label {
    font-weight: 600;
    color: #555;
}
.detay-dogum-value {
    color: #333;
}

/* Quickinfo Grid */
.detay-quickinfo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f2f5;
}
.detay-quickinfo {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #f8f9fb;
    border-radius: 10px;
    font-size: 13px;
    color: #555;
}
.detay-quickinfo i {
    font-size: 16px;
    color: var(--accent);
}

/* Empty State */
.detay-empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #bbb;
}
.detay-empty-state i {
    font-size: 48px;
    display: block;
    margin-bottom: 12px;
}
.detay-empty-state p {
    font-size: 14px;
    margin: 0;
}

/* ===== HABERLER ===== */
.detay-haberler-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.detay-haber-card {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #f8f9fb;
    border-radius: 12px;
    transition: all 0.2s;
}
.detay-haber-card:hover {
    background: #f0f2f5;
    transform: translateX(4px);
}
.detay-haber-img {
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #e8ecf0;
}
.detay-haber-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.detay-haber-body { flex: 1; min-width: 0; }
.detay-haber-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.detay-haber-ozet {
    font-size: 13px;
    color: #777;
    margin: 0 0 8px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.detay-haber-meta {
    display: flex;
    gap: 14px;
    font-size: 12px;
    color: #aaa;
}
.detay-haber-meta i { margin-right: 3px; }
.detay-haber-kaynak {
    color: var(--accent);
    font-weight: 600;
}

/* ===== TWEETLER ===== */
.detay-tweets-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.detay-tweet-card {
    border: 1px solid #f0f2f5;
    border-radius: 12px;
    padding: 16px;
    transition: all 0.2s;
}
.detay-tweet-card:hover {
    border-color: #d0d5dd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.detay-tweet-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.detay-tweet-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}
.detay-tweet-avatar-ph {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #aaa;
}
.detay-tweet-name {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    display: block;
    line-height: 1.2;
}
.detay-tweet-handle {
    font-size: 12px;
    color: #999;
}
.detay-tweet-date {
    font-size: 12px;
    color: #aaa;
    margin-left: auto;
}
.detay-tweet-text {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin: 0 0 10px;
    white-space: pre-wrap;
    word-break: break-word;
}
.detay-tweet-media {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 10px;
}
.detay-tweet-stats {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #888;
}
.detay-tweet-stats span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.detay-tweet-stats i {
    font-size: 14px;
}

/* ===== X & INSTAGRAM ANALİZ ===== */

/* Ortalama İstatistik Kartları */
.detay-ort-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}
.detay-ort-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px 14px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}
.detay-ort-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
}
.detay-ort-gor::before { background: linear-gradient(90deg, #1da1f2, #0d8ecf); }
.detay-ort-beg::before { background: linear-gradient(90deg, #e0245e, #c41e52); }
.detay-ort-yor::before { background: linear-gradient(90deg, #17bf63, #14a857); }
.detay-ort-ret::before { background: linear-gradient(90deg, #794bc4, #5e3a9e); }
.detay-ort-icon {
    font-size: 20px;
    margin-bottom: 6px;
}
.detay-ort-gor .detay-ort-icon { color: #1da1f2; }
.detay-ort-beg .detay-ort-icon { color: #e0245e; }
.detay-ort-yor .detay-ort-icon { color: #17bf63; }
.detay-ort-ret .detay-ort-icon { color: #794bc4; }
.detay-ort-val {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
}
.detay-ort-label {
    font-size: 11px;
    color: #6c757d;
    margin-top: 4px;
    font-weight: 500;
}

/* Grafik Kutusu */
.detay-chart-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}
.detay-chart-box canvas {
    max-height: 250px;
}
.detay-chart-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 16px;
}
.detay-chart-header i {
    color: #1d9bf0;
}
.detay-chart-current {
    margin-left: auto;
    font-size: 13px;
    font-weight: 500;
    color: #6c757d;
    background: #f0f7ff;
    padding: 3px 10px;
    border-radius: 12px;
}

/* Section Title */
.detay-section-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.detay-section-title i { color: #6c757d; }

/* Takipçi Geçmişi */
.detay-takipci-gecmis {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}
.detay-gecmis-list {
    max-height: 400px;
    overflow-y: auto;
}
.detay-gecmis-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 13px;
}
.detay-gecmis-item:last-child { border-bottom: none; }
.detay-gecmis-tarih {
    width: 70px;
    color: #6c757d;
    font-weight: 500;
}
.detay-gecmis-sayi {
    flex: 1;
    font-weight: 600;
    color: #1a1a2e;
}
.detay-gecmis-fark {
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
}
.detay-gecmis-fark.up { color: #198754; background: #e8f5e9; }
.detay-gecmis-fark.down { color: #dc3545; background: #ffeef0; }

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

/* ===== VIP TEASER ===== */
.detay-vip-teaser {
    margin-top: 20px;
}
.detay-vip-teaser-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 14px;
    padding: 24px;
    color: #fff;
}
.detay-vip-teaser-inner > i {
    font-size: 36px;
    color: #f0c040;
    flex-shrink: 0;
}
.detay-vip-teaser-inner h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px;
}
.detay-vip-teaser-inner p {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    margin: 0;
}
.detay-vip-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: linear-gradient(135deg, #f0c040, #e6a817);
    color: #1a1a2e;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.2s;
    white-space: nowrap;
}
.detay-vip-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(240,192,64,0.4);
    color: #1a1a2e;
}

/* ===== YETKİNLİKLER & ÖZELLİKLER (Eski site stili) ===== */
.detay-yetkinlikler {
    background: #f8f9fb;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 24px;
    border-left: 4px solid var(--primary);
}
.detay-yetkinlikler-header {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.detay-yetkinlikler-header i {
    font-size: 18px;
}
.detay-yetkinlikler-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.detay-skill-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--skill-renk);
    background: #fff;
    border: 2px solid var(--skill-renk);
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}
.detay-skill-badge:hover {
    background: var(--skill-renk);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.detay-skill-badge i {
    font-size: 15px;
}

/* ===== DETAY RESPONSIVE ===== */

/* Tablet (768-992px): plaka+bilgi sol, statlar sağ — kompakt */
@media (max-width: 992px) {
    .detay-header-inner {
        flex-wrap: nowrap;
    }
    .detay-header-right {
        max-width: 220px;
    }
    .detay-layout {
        grid-template-columns: 1fr;
    }
    .detay-sidebar {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 16px;
    }
}

/* Tablet dikey (768-992px arası): il-detay özel düzen */
@media (min-width: 768px) and (max-width: 992px) {
    .detay-header-inner {
        flex-wrap: nowrap;
        align-items: center;
        gap: 20px;
    }
    .detay-foto-wrap > div {
        width: 100px !important;
        height: 100px !important;
    }
    .detay-foto-wrap > div > span {
        font-size: 36px !important;
    }
    .detay-header-info {
        flex: 0 1 auto;
        min-width: 0;
    }
    .detay-header-info .detay-name {
        font-size: 22px;
    }
    .detay-header-right {
        max-width: 230px;
    }
    .detay-header-stats {
        gap: 6px;
    }
    .detay-stat-box {
        padding: 8px 10px;
    }
    .detay-stat-val {
        font-size: 15px !important;
    }
    .detay-stat-label {
        font-size: 10px !important;
    }
}

/* Mobil (<768px): ortalanmış dikey düzen */
@media (max-width: 768px) {
    .detay-header {
        padding: 24px 0;
    }
    .detay-header-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .detay-foto-wrap > div {
        width: 110px !important;
        height: 110px !important;
    }
    .detay-foto-wrap > div > span {
        font-size: 38px !important;
    }
    .detay-foto {
        width: 120px;
        height: 150px;
    }
    .detay-foto-placeholder {
        width: 120px;
        height: 150px;
        font-size: 48px;
    }
    .detay-name {
        font-size: 22px;
    }
    .detay-name-row {
        justify-content: center;
    }
    .detay-social-row {
        justify-content: center;
    }
    .detay-begeni-wrap {
        margin-left: 0;
        margin-top: 4px;
    }
    .detay-header-right {
        max-width: 100%;
        width: 100%;
        margin-left: 0;
    }
    .detay-header-stats {
        grid-template-columns: 1fr 1fr;
        justify-content: center;
    }
    .detay-sidebar {
        grid-template-columns: 1fr;
    }
    .detay-vip-teaser-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .detay-tabs {
        padding: 4px 4px 0;
    }
    .detay-tab {
        padding: 10px 14px;
        font-size: 13px;
    }
    .detay-tab-pane {
        padding: 16px;
    }
    .detay-haber-card {
        flex-direction: column;
    }
    .detay-haber-img {
        width: 100%;
        height: 160px;
    }
    .detay-quickinfo-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   KURUM LOGO CAROUSEL (eski sitedeki gibi)
   ============================================================ */
.kurum-carousel-section {
    background: #ffffff;
    padding: 18px 0 12px;
    overflow: hidden;
    width: 100%;
    margin-bottom: 0;
}
.kurum-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}
.kurum-carousel-track {
    display: flex;
    width: max-content;
}
.kurum-logo-item {
    flex: 0 0 auto;
    width: 70px;
    height: 70px;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    padding: 8px;
    opacity: 0.9;
    transition: opacity 0.3s, transform 0.3s;
    box-shadow: none;
    border: none;
}
.kurum-logo-item:hover {
    opacity: 1;
    transform: scale(1.08);
}
.kurum-logo-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.kurum-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
@media (max-width: 768px) {
    .kurum-carousel-section {
        padding: 12px 0 8px;
    }
    .kurum-logo-item {
        width: 60px;
        height: 60px;
        margin: 0 12px;
        border-radius: 8px;
        padding: 6px;
    }
}
@media (max-width: 480px) {
    .kurum-logo-item {
        width: 50px;
        height: 50px;
        margin: 0 8px;
        border-radius: 7px;
        padding: 5px;
    }
}

/* ============================================================
   İl Detay Sayfası
   ============================================================ */

/* Mini Harita */
.il-mini-harita svg {
    width: 100%;
    height: auto;
    max-height: 280px;
}
.il-mini-harita svg path {
    stroke: #dee2e6;
    stroke-width: 0.5;
    transition: fill 0.3s ease;
}

/* Yönetici Kartları (Vali/BB - büyük kartlar) */
.il-yonetici-card {
    border-left: 4px solid #0d6efd;
    transition: all 0.2s ease;
}
.il-yonetici-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
}

/* Hava Durumu Widget */
.il-hava-widget {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 12px;
}

/* Plaka kodu dairesi */
.il-plaka-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 800;
    color: rgba(255,255,255,0.95);
    border: 3px solid rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
    .il-plaka-circle {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
    .il-mini-harita svg {
        max-height: 200px;
    }
}
