/*
 * Benim Plaka - Ana Tema
 * Twitter benzeri modern tasarım
 * Renk Paleti: Siyah/Beyaz + #2596BE
 */

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
    /* === LIGHT TEMA (Varsayılan) === */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F7F9F9;
    --bg-tertiary: #EFF3F4;
    --bg-hover: #EFF3F4;
    --bg-card: #F7F9F9;
    --bg-glass: rgba(255, 255, 255, 0.85);
    --border-color: #E1E8ED;
    --border-light: #CFD9DE;
    --text-primary: #0F1419;
    --text-secondary: #536471;
    --text-muted: #71767B;
    --accent: #5e17eb;
    --accent-hover: #5014cc;
    --accent-light: rgba(94, 23, 235, 0.08);
    --accent-lighter: rgba(94, 23, 235, 0.16);
    --danger: #F4212E;
    --danger-hover: #DC1D29;
    --success: #00BA7C;
    --warning: #E6A000;
    --white: #FFFFFF;
    --sidebar-width: 240px;
    --sidebar-bg: #f6f7f8;
    --sidebar-text: #1c1c1e;
    --sidebar-text-muted: #878a8c;
    --sidebar-hover: rgba(26,26,27,0.08);
    --sidebar-border: #edeff1;
    --content-max: 600px;
    --right-panel-width: 350px;
    --header-height: 53px;
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.18);
    --transition: 0.2s ease;
}

/* === DARK TEMA === */
[data-theme="dark"] {
    --bg-primary: #000000;
    --bg-secondary: #16181C;
    --bg-tertiary: #1D1F23;
    --bg-hover: #1D1F23;
    --bg-card: #16181C;
    --bg-glass: rgba(0, 0, 0, 0.75);
    --border-color: #2F3336;
    --border-light: #38444D;
    --text-primary: #E7E9EA;
    --text-secondary: #71767B;
    --text-muted: #536471;
    --accent: #7c3aed;
    --accent-hover: #6d28d9;
    --accent-light: rgba(124, 58, 237, 0.15);
    --accent-lighter: rgba(124, 58, 237, 0.25);
    --warning: #FFD700;
    --sidebar-bg: #1a1a1b;
    --sidebar-text: #d7dadc;
    --sidebar-text-muted: #818384;
    --sidebar-hover: rgba(255,255,255,0.06);
    --sidebar-border: #343536;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.5);
}


/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: rgba(15, 20, 25, 0.05);
}
::-webkit-scrollbar-thumb {
    background: rgba(15, 20, 25, 0.15);
    border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(94, 23, 235, 0.35);
}
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(15, 20, 25, 0.15) rgba(15, 20, 25, 0.05);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover {
    color: var(--accent-hover);
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol { list-style: none; }

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

/* ============================================================
   LAYOUT - 3 Column Twitter Style
   ============================================================ */
.app-layout {
    display: flex;
    width: 100%;
    min-height: 100vh;
    padding-left: 74px;
    justify-content: center;
}

/* ============================================================
   SIDEBAR (Sol Menü)
   ============================================================ */
.sidebar {
    width: 74px;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 8px;
    border-right: 1px solid var(--sidebar-border);
    overflow: hidden;
    z-index: 250;
    background: var(--sidebar-bg);
    color: var(--sidebar-text);
    transition: width 0.26s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.26s ease;
    box-sizing: border-box;
}

.sidebar:hover {
    width: var(--sidebar-width, 240px);
    box-shadow: 6px 0 28px rgba(0, 0, 0, 0.14);
}

/* ── Logo ── */
.sidebar-logo {
    height: 62px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-decoration: none;
    box-sizing: border-box;
}

.sidebar-logo-icon {
    font-size: 22px;
    flex-shrink: 0;
    color: var(--accent);
    width: 22px;
    text-align: center;
}

.sidebar-logo img,
.sidebar-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    flex-shrink: 0;
    object-fit: contain;
}

.sidebar-logo span,
.sidebar-logo-text {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover), var(--accent));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: sidebarShimmer 4s linear infinite;
    white-space: nowrap;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: opacity 0.18s ease, max-width 0.26s ease;
    display: inline-block;
}

.sidebar:hover .sidebar-logo span,
.sidebar:hover .sidebar-logo-text {
    opacity: 1;
    max-width: 170px;
    transition: opacity 0.18s ease 0.08s, max-width 0.26s ease;
}

@keyframes sidebarShimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ── Nav (Ekrana Göre Dikey Ortalı) ── */
.sidebar-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    margin: auto 0;
    overflow-x: hidden;
    overflow-y: hidden;
    scrollbar-width: none;
}

.sidebar-nav::-webkit-scrollbar {
    display: none;
}

.sidebar-nav .nav-item {
    margin-bottom: 6px;
}
.sidebar-nav .nav-item:last-child {
    margin-bottom: 0;
}

.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 16px;
    height: 44px;
    box-sizing: border-box;
    border-radius: 12px;
    color: var(--sidebar-text);
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    transition: background 0.15s ease;
    position: relative;
    width: 100%;
}

.sidebar-nav .nav-link:hover {
    background: var(--sidebar-hover);
}

.sidebar-nav .nav-link i {
    width: 26px;
    min-width: 26px;
    font-size: 20px;
    text-align: center;
    flex-shrink: 0;
    color: var(--sidebar-text);
    transition: transform 0.2s ease;
}

.sidebar-nav .nav-link:hover i {
    animation: navIconBounce 0.35s ease;
}

@keyframes navIconBounce {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.18); }
}

.sidebar-nav .nav-link .nav-label {
    font-size: 15px;
    white-space: nowrap;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: opacity 0.15s ease, max-width 0.25s ease;
    display: inline-block !important;
}

.sidebar:hover .sidebar-nav .nav-link .nav-label {
    opacity: 1;
    max-width: 170px;
    transition: opacity 0.15s ease 0.08s, max-width 0.25s ease;
}

/* Aktif menü: kalın + siyah */
.sidebar-nav .nav-link.active {
    font-weight: 700;
    color: var(--sidebar-text);
    background: var(--sidebar-hover);
    border-radius: 8px;
}

.sidebar-nav .nav-link.active i,
.sidebar-nav .nav-link.active .nav-label {
    color: var(--sidebar-text);
    font-weight: 700;
}

/* Badge */
.sidebar-nav .nav-link .badge {
    position: absolute;
    top: 5px;
    left: 26px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--accent);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(94, 23, 235, 0.35); }
    50%      { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(94, 23, 235, 0); }
}

.sidebar-divider {
    border: none;
    border-top: 1px solid var(--sidebar-border);
    margin: 8px 4px;
    height: 1px;
    opacity: 0.8;
}

/* ── Alt kullanıcı alanı ── */
.sidebar-user {
    margin-top: auto;
    margin-bottom: 12px;
    padding: 6px 10px;
    height: 52px;
    box-sizing: border-box;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    border: 1px solid transparent;
    flex-shrink: 0;
    overflow: hidden;
    width: 100%;
}

.sidebar-user:hover {
    background: var(--sidebar-hover);
    border-color: var(--accent);
}

.sidebar-user .user-info {
    min-width: 0;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: opacity 0.15s ease, max-width 0.26s ease;
    display: block !important;
}

.sidebar:hover .sidebar-user .user-info {
    opacity: 1;
    max-width: 140px;
    transition: opacity 0.15s ease 0.08s, max-width 0.26s ease;
}

.sidebar-user .user-info .name {
    font-weight: 700;
    font-size: 13.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--sidebar-text);
}

.sidebar-user .user-info .handle {
    color: var(--sidebar-text-muted);
    font-size: 11.5px;
    white-space: nowrap;
}

.sidebar-user .fa-ellipsis {
    opacity: 0;
    transition: opacity 0.15s ease;
    color: var(--sidebar-text-muted);
    flex-shrink: 0;
    margin-left: auto;
    display: inline-block !important;
}

.sidebar:hover .sidebar-user .fa-ellipsis {
    opacity: 1;
    transition: opacity 0.15s ease 0.08s;
}

/* ── Gönderi butonu ── */
.btn-compose {
    width: 44px;
    height: 44px;
    margin: auto auto 12px;
    padding: 0;
    box-sizing: border-box;
    background: var(--sidebar-text);
    color: transparent;
    font-size: 0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    transition: width 0.26s ease, border-radius 0.26s ease,
                background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
    text-decoration: none;
}

.btn-compose:hover {
    transform: scale(1.04);
}

.btn-compose::before {
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 17px;
    color: var(--sidebar-bg);
}

.sidebar:hover .btn-compose {
    width: calc(100% - 16px);
    height: 44px;
    padding: 0 16px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 700;
    color: var(--sidebar-bg);
    margin: auto auto 12px;
}

.sidebar:hover .btn-compose::before {
    display: none;
}

/* ============================================================
   MAIN CONTENT (Orta Alan)
   ============================================================ */
.main-content {
    flex: 1;
    min-width: 0;
    max-width: 800px;
    border-right: 1px solid var(--border-color);
    min-height: 100vh;
}

.content-header {
    position: sticky;
    top: 0;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 0 16px;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 50;
}

.content-header h1 {
    font-size: 20px;
    font-weight: 700;
}

.content-header .back-btn {
    margin-right: 16px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}
.content-header .back-btn:hover {
    background: var(--bg-hover);
}

/* ============================================================
   TABS (Sekmeler)
   ============================================================ */
.tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

.tab {
    flex: 1;
    text-align: center;
    padding: 16px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    position: relative;
    transition: all var(--transition);
    border: none;
    background: none;
}

.tab:hover {
    background: var(--bg-hover);
}

.tab.active {
    color: var(--text-primary);
    font-weight: 700;
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

/* ============================================================
   QUICK ACCESS CARDS (Satılık/Arıyorum)
   ============================================================ */
.quick-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
}

.quick-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 16px;
    cursor: pointer;
    transition: all var(--transition);
}
.quick-card:hover {
    border-color: var(--accent);
    background: var(--accent-light);
}

.quick-card i {
    font-size: 24px;
    color: var(--accent);
    margin-bottom: 8px;
    display: block;
}

.quick-card .card-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.quick-card .card-desc {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ============================================================
   POST CARD (Gönderi Kartı)
   ============================================================ */
.post-card {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    gap: 12px;
    transition: background var(--transition);
    cursor: pointer;
}
.post-card:hover {
    background: var(--bg-hover);
}

.post-card .post-avatar {
    flex-shrink: 0;
}

.post-card .post-body {
    flex: 1;
    min-width: 0;
}

.post-card .post-header {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 2px;
    flex-wrap: wrap;
}

.post-card .post-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-primary);
}

.post-card .post-verified {
    color: var(--accent);
    font-size: 14px;
}

.post-card .post-handle {
    color: var(--text-secondary);
    font-size: 15px;
}

.post-card .post-time {
    color: var(--text-secondary);
    font-size: 15px;
}

.post-card .post-time::before {
    content: '·';
    margin: 0 4px;
}

.post-card .post-menu-btn {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 8px;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-size: 16px;
    transition: all var(--transition);
}
.post-card .post-menu-btn:hover {
    background: var(--accent-light);
    color: var(--accent);
}

.post-card .post-content {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 12px;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.post-card .post-image {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin-bottom: 12px;
    max-height: 510px;
}

.post-card .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-card .post-actions {
    display: flex;
    justify-content: space-between;
    max-width: 425px;
}

.post-action {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 13px;
    padding: 8px 12px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition);
}

.post-action i {
    font-size: 18px;
    transition: color var(--transition);
}

.post-action.action-comment:hover {
    color: var(--accent);
    background: var(--accent-light);
}

.post-action.action-like:hover,
.post-action.action-like.liked {
    color: #F91880;
    background: rgba(249, 24, 128, 0.1);
}
.post-action.action-like.liked i {
    font-weight: 900;
}

.post-action.action-share:hover {
    color: var(--success);
    background: rgba(0, 186, 124, 0.1);
}

.post-action.action-save:hover,
.post-action.action-save.saved {
    color: var(--accent);
    background: var(--accent-light);
}
.post-action.action-save.saved i { font-weight: 900; }

/* ============================================================
   MEETING CARD (Buluşma Kartı)
   ============================================================ */
.meeting-card {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    transition: background var(--transition);
}
.meeting-card:hover {
    background: var(--bg-hover);
}

.meeting-card .meeting-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.meeting-card .meeting-body {
    margin-left: 52px;
}

.meeting-card .meeting-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.meeting-card .meeting-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}

.meeting-card .meeting-info span {
    color: var(--text-secondary);
    font-size: 14px;
}

.meeting-card .meeting-info i {
    width: 20px;
    margin-right: 6px;
    color: var(--accent);
}

.meeting-card .meeting-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 200px;
    margin-bottom: 12px;
    border: 1px solid var(--border-color);
}

.meeting-card .meeting-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================================
   RIGHT PANEL (Sağ Panel)
   ============================================================ */
.right-panel {
    width: var(--right-panel-width);
    flex-shrink: 0;
    padding: 12px 24px;
    background: var(--bg-primary);
    border-left: 1px solid var(--border-color);
    align-self: flex-start;
}

.search-box {
    position: relative;
    margin-bottom: 16px;
}

.search-box input {
    width: 100%;
    padding: 12px 12px 12px 44px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-size: 15px;
    outline: none;
    transition: all var(--transition);
}

.search-box input:focus {
    border-color: var(--accent);
    background: transparent;
    box-shadow: 0 0 0 1px var(--accent);
}

.search-box input::placeholder {
    color: var(--text-secondary);
}

.search-box i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 15px;
}

.search-box input:focus + i,
.search-box input:focus ~ i {
    color: var(--accent);
}

.panel-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.panel-card .panel-header {
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.panel-header-link {
    width: 26px; height: 26px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-secondary);
    font-size: 12px;
    text-decoration: none;
    transition: background 0.18s, color 0.18s;
}
.panel-header-link:hover { background: var(--bg-hover); color: var(--text-primary); }

.panel-card .panel-item {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background var(--transition);
    cursor: pointer;
}
.panel-card .panel-item:hover {
    background: var(--bg-hover);
}

.panel-card .panel-item .item-info {
    flex: 1;
    min-width: 0;
}

.panel-card .panel-item .item-info .item-label {
    font-size: 13px;
    color: var(--text-secondary);
}

.panel-card .panel-item .item-info .item-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-primary);
}

.panel-card .panel-item .item-info .item-desc {
    font-size: 13px;
    color: var(--text-secondary);
}

.panel-card .panel-footer {
    display: none;
}

.panel-item-arrow {
    color: var(--text-muted);
    font-size: 12px;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.15s, transform 0.15s;
}
.panel-card .panel-item:hover .panel-item-arrow {
    opacity: 1;
    transform: translateX(2px);
}

/* ============================================================
   USER CARD (Kullanıcı Kartı)
   ============================================================ */
.user-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    transition: background var(--transition);
}
.user-card:hover {
    background: var(--bg-hover);
}

.user-card .user-info {
    flex: 1;
    min-width: 0;
}

.user-card .user-name {
    font-weight: 700;
    font-size: 15px;
}

.user-card .user-handle {
    color: var(--text-secondary);
    font-size: 13px;
}

.user-card .user-plaka {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
}

/* ============================================================
   PROFILE HEADER
   ============================================================ */
.profile-banner {
    height: 200px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    position: relative;
}

.profile-header {
    padding: 12px 16px;
    position: relative;
}

.profile-header .profile-avatar {
    margin-top: -67px;
    border: 4px solid var(--bg-primary);
    border-radius: 50%;
    display: inline-block;
}

.profile-header .profile-actions {
    float: right;
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.profile-header .profile-name {
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 4px;
}

.profile-header .profile-handle {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 12px;
}

.profile-header .profile-bio {
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.profile-header .profile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 12px;
}

.profile-header .profile-meta i {
    margin-right: 4px;
}

.profile-header .profile-stats {
    display: flex;
    gap: 20px;
    font-size: 15px;
}

.profile-header .profile-stats strong {
    color: var(--text-primary);
    font-weight: 700;
}

.profile-header .profile-stats span {
    color: var(--text-secondary);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 20px;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-decoration: none;
    line-height: 1.4;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--accent-hover);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}
.btn-outline:hover {
    background: rgba(239, 243, 244, 0.1);
    color: var(--text-primary);
}

.btn-danger {
    background: var(--danger);
    color: var(--white);
}
.btn-danger:hover {
    background: var(--danger-hover);
    color: var(--white);
}

.btn-success {
    background: var(--success);
    color: var(--white);
}

.btn-sm {
    padding: 6px 16px;
    font-size: 13px;
}

.btn-lg {
    padding: 12px 32px;
    font-size: 17px;
}

.btn-block {
    width: 100%;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 17px;
    outline: none;
    transition: all var(--transition);
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2371767B' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

/* ============================================================
   FLASH MESSAGES
   ============================================================ */
.flash {
    padding: 12px 16px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 16px;
    font-size: 15px;
    animation: flashIn 0.3s ease;
}

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

.flash-success {
    background: rgba(0, 186, 124, 0.15);
    color: var(--success);
    border: 1px solid rgba(0, 186, 124, 0.3);
}

.flash-error {
    background: rgba(244, 33, 46, 0.15);
    color: var(--danger);
    border: 1px solid rgba(244, 33, 46, 0.3);
}

.flash-info {
    background: var(--accent-light);
    color: var(--accent);
    border: 1px solid var(--accent-lighter);
}

.flash-warning {
    background: rgba(255, 215, 0, 0.1);
    color: var(--warning);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.flash-close {
    margin-left: auto;
    background: none;
    border: none;
    color: inherit;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.6;
}
.flash-close:hover { opacity: 1; }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(91, 112, 131, 0.4);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.modal-overlay.show {
    display: flex;
}

.modal {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalIn 0.2s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.modal-header {
    display: flex;
    align-items: center;
    padding: 0 16px;
    height: 53px;
    gap: 16px;
}

.modal-header .modal-close {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-full);
    display: flex;
}
.modal-header .modal-close:hover {
    background: var(--bg-hover);
}

.modal-header h2 {
    font-size: 20px;
    font-weight: 700;
    flex: 1;
}

.modal-body {
    padding: 0 16px 16px;
}

/* ============================================================
   DROPDOWN MENU
   ============================================================ */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 200px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 10001;
    display: none;
    animation: dropIn 0.15s ease;
    overflow: hidden;
}

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

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

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    font-size: 15px;
    color: var(--text-primary);
    transition: background var(--transition);
}
.dropdown-item:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}
.dropdown-item.text-danger {
    color: var(--danger);
}

/* ============================================================
   COMPOSE BOX (Gönderi Yazma)
   ============================================================ */
.compose-box {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
}

.compose-box textarea {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 20px;
    resize: none;
    outline: none;
    min-height: 52px;
}

.compose-box textarea::placeholder {
    color: var(--text-muted);
}

.compose-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px 12px 68px;
    border-bottom: 1px solid var(--border-color);
}

.compose-tools {
    display: flex;
    gap: 4px;
}

.compose-tools button {
    background: none;
    border: none;
    color: var(--accent);
    padding: 8px;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-size: 18px;
    transition: background var(--transition);
}
.compose-tools button:hover {
    background: var(--accent-light);
}

/* ============================================================
   COMMENT / REPLY
   ============================================================ */
.comment-item {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
}

.comment-item .comment-body {
    flex: 1;
    min-width: 0;
}

.comment-item .comment-content {
    font-size: 15px;
    margin-top: 4px;
}

.comment-item .comment-actions {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

/* ============================================================
   RATING STARS
   ============================================================ */
.stars {
    display: inline-flex;
    gap: 2px;
}

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

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

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

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

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

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

/* ============================================================
   SETTINGS PAGE
   ============================================================ */
.settings-section {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.settings-group-title {
    padding: 16px 16px 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.settings-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    cursor: pointer;
    transition: background var(--transition);
    color: var(--text-primary);
    text-decoration: none;
}
.settings-item:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.settings-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.settings-icon i {
    font-size: 15px;
    color: var(--text-secondary);
}

.settings-text {
    flex: 1;
    min-width: 0;
}

.settings-label {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.settings-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.3;
    margin-top: 2px;
}

.settings-arrow {
    color: var(--text-muted);
    font-size: 13px;
    flex-shrink: 0;
}

.settings-item .setting-status {
    font-size: 12px;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-weight: 600;
}

.setting-status.verified {
    background: rgba(0, 186, 124, 0.12);
    color: var(--success);
}

.setting-status.pending {
    background: rgba(255, 215, 0, 0.1);
    color: var(--warning);
}

/* ============================================================
   FORM PAGES (Düzenleme sayfaları)
   ============================================================ */
.form-page {
    padding: 20px 16px;
}

.form-section-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin: 24px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}
.form-section-title:first-child {
    margin-top: 0;
}

.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 15px;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-light);
}
.form-input::placeholder {
    color: var(--text-muted);
}

textarea.form-input {
    resize: vertical;
    min-height: 90px;
    line-height: 1.5;
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2371767B' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-primary);
}
.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    cursor: pointer;
    flex-shrink: 0;
}

.form-avatar-section {
    text-align: center;
    padding: 8px 0 16px;
}

.form-divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 24px 0;
}

/* Form içi Info Box */
.form-info-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: var(--accent-light);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}
.form-info-box i {
    color: var(--accent);
    font-size: 18px;
    margin-top: 2px;
}
.form-info-box p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Hasar grid */
.damage-grid {
    display: grid;
    gap: 8px;
}
.damage-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    align-items: center;
}
.damage-part-name {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 8px 12px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
}

/* Blocked user card */
.blocked-user-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
    transition: background var(--transition);
}
.blocked-user-card:hover {
    background: var(--bg-hover);
}
.blocked-user-card .user-meta {
    flex: 1;
    min-width: 0;
}
.blocked-user-card .user-meta .name {
    font-size: 15px;
    font-weight: 600;
}
.blocked-user-card .user-meta .handle {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Verify section */
.verify-hero {
    text-align: center;
    padding: 40px 24px;
}
.verify-hero i.hero-icon {
    font-size: 56px;
    color: var(--accent);
    margin-bottom: 16px;
    display: block;
}
.verify-hero h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.verify-hero p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.verify-status {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: var(--radius-md);
    margin: 16px;
}
.verify-status.success {
    background: rgba(0, 186, 124, 0.1);
    color: var(--success);
}
.verify-status.pending {
    background: var(--accent-light);
    color: var(--accent);
}
.verify-status i {
    font-size: 20px;
}
.verify-status span {
    font-size: 14px;
    font-weight: 600;
}

/* ============================================================
   LOADING & EMPTY STATES
   ============================================================ */
.empty-state {
    text-align: center;
    padding: 48px 24px;
}

.empty-state i {
    font-size: 48px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.empty-state h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.empty-state p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.spinner {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid var(--border-color);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.loading-more {
    text-align: center;
    padding: 24px;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 16px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition);
}

.pagination a {
    color: var(--text-primary);
}
.pagination a:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.pagination .active {
    background: var(--accent);
    color: var(--white);
}

.pagination .disabled {
    color: var(--text-muted);
    cursor: not-allowed;
}

/* ============================================================
   CHAT / MESSAGES
   ============================================================ */
.chat-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: background var(--transition);
}
.chat-list-item:hover { background: var(--bg-hover); }

.chat-list-item .chat-preview {
    flex: 1;
    min-width: 0;
}

.chat-list-item .chat-preview .chat-name {
    font-weight: 700;
    font-size: 15px;
}

.chat-list-item .chat-preview .chat-last {
    color: var(--text-secondary);
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-list-item .chat-time {
    font-size: 12px;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.chat-list-item .unread-badge {
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: var(--accent);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chat-bubble {
    max-width: 75%;
    padding: 12px 16px;
    border-radius: var(--radius-lg);
    font-size: 15px;
    line-height: 1.4;
    word-wrap: break-word;
}

.chat-bubble.sent {
    background: var(--accent);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-bubble.received {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-bubble .bubble-time {
    font-size: 11px;
    opacity: 0.6;
    margin-top: 4px;
    text-align: right;
}

.chat-input-area {
    padding: 12px 16px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 12px;
    align-items: flex-end;
}

.chat-input-area .form-control {
    flex: 1;
    border-radius: var(--radius-lg);
    min-height: 44px;
    padding: 10px 16px;
}

/* ============================================================
   FAB (Floating Action Button)
   ============================================================ */
.fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    display: none;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    z-index: 90;
}
.fab:hover {
    background: var(--accent-hover);
    transform: scale(1.05);
}

/* ============================================================
   FILTER CHIPS
   ============================================================ */
.filter-chips {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    overflow-x: auto;
    border-bottom: 1px solid var(--border-color);
}

.chip {
    padding: 6px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 14px;
    white-space: nowrap;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--text-primary);
}
.chip:hover,
.chip.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

/* ============================================================
   AKADEMI & STATIC PAGES
   ============================================================ */
.akademi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
}

.akademi-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    transition: all var(--transition);
    cursor: pointer;
}
.akademi-card:hover {
    border-color: var(--accent);
    background: var(--accent-light);
    transform: translateY(-2px);
}

.akademi-card i {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 12px;
}

.akademi-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.akademi-card p {
    font-size: 13px;
    color: var(--text-secondary);
}

.content-article {
    padding: 16px;
    line-height: 1.7;
}

.content-article h2 {
    font-size: 22px;
    font-weight: 800;
    margin: 24px 0 12px;
    color: var(--accent);
}

.content-article h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 20px 0 8px;
}

.content-article p {
    font-size: 15px;
    margin-bottom: 12px;
}

.content-article ul {
    padding-left: 20px;
    margin-bottom: 12px;
}

.content-article li {
    list-style: disc;
    margin-bottom: 6px;
    font-size: 15px;
}

.info-box {
    background: var(--accent-light);
    border-left: 4px solid var(--accent);
    padding: 16px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 16px 0;
}

.info-box.success {
    background: rgba(0, 186, 124, 0.1);
    border-left-color: var(--success);
}

.info-box.warning {
    background: rgba(255, 215, 0, 0.08);
    border-left-color: var(--warning);
}

/* ============================================================
   CAR DETAILS
   ============================================================ */
.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: 16px;
}

.detail-item {
    background: var(--bg-primary);
    padding: 16px;
}

.detail-item .detail-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.detail-item .detail-value {
    font-size: 15px;
    font-weight: 600;
}

.color-preview {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
    border: 1px solid var(--border-color);
}

/* ============================================================
   DAMAGE MAP (Hasar Şeması)
   ============================================================ */
.damage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 16px;
}

.damage-part {
    text-align: center;
    padding: 12px 8px;
    border-radius: var(--radius-md);
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--border-color);
}

.damage-part.original { background: rgba(0, 186, 124, 0.1); color: var(--success); border-color: var(--success); }
.damage-part.painted  { background: rgba(15, 20, 25, 0.08); color: var(--accent); border-color: var(--accent); }
.damage-part.changed  { background: rgba(244, 33, 46, 0.1); color: var(--danger); border-color: var(--danger); }

/* ============================================================
   NOTIFICATION
   ============================================================ */
.notification-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    transition: background var(--transition);
}
.notification-item:hover { background: var(--bg-hover); }
.notification-item.unread { background: var(--accent-light); }

.notification-item .notif-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-item .notif-content {
    flex: 1;
}

.notification-item .notif-time {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* ============================================================
   MOBILE BOTTOM NAV
   ============================================================ */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    z-index: 100;
    padding: 8px 0;
    padding-bottom: env(safe-area-inset-bottom, 8px);
}

.mobile-nav .nav-items {
    display: flex;
    justify-content: space-around;
}

.mobile-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 4px;
    color: var(--text-secondary);
    font-size: 10px;
    text-decoration: none;
    position: relative;
}

.mobile-nav .nav-item.active {
    color: var(--accent);
}

.mobile-nav .nav-item i {
    font-size: 22px;
}

.mobile-nav .nav-item .mob-badge {
    position: absolute;
    top: -2px;
    right: 50%;
    margin-right: -16px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    background: var(--accent);
    color: var(--white);
    font-size: 10px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Sağ panel gizle */
@media (max-width: 1280px) {
    .right-panel {
        display: none;
    }
    .main-content {
        margin-right: 0;
    }
}

/* Tablet: hover expand çalışmaya devam eder, sağ panel zaten gizli */
@media (max-width: 1024px) {
    .app-layout {
        padding-left: 74px;
        justify-content: flex-start;
    }
    .main-content {
        max-width: 100%;
    }
}


/* Mobil - sol menü gizle, alt bar göster */
@media (max-width: 768px) {
    .sidebar {
        display: none;
    }
    .mobile-nav {
        display: block;
    }
    .fab {
        display: flex;
        bottom: 80px;
    }
    .app-layout {
        padding-left: 0;
        justify-content: flex-start;
    }
    .main-content {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        border: none;
    }
    .quick-cards {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 12px;
    }
    .profile-banner {
        height: 150px;
    }
    .detail-grid {
        grid-template-columns: 1fr;
    }
    .akademi-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .post-card {
        padding: 12px;
    }
    .compose-actions {
        padding-left: 52px;
    }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.d-flex { display: flex; }
.d-none { display: none; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-flex { display: inline-flex; }
.flex-1 { flex: 1; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 4px; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.p-0 { padding: 0; }
.p-8 { padding: 8px; }
.p-12 { padding: 12px; }
.p-16 { padding: 16px; }
.px-16 { padding-left: 16px; padding-right: 16px; }
.py-8 { padding-top: 8px; padding-bottom: 8px; }
.py-12 { padding-top: 12px; padding-bottom: 12px; }
.m-0 { margin: 0; }
.mt-4 { margin-top: 4px; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-4 { margin-bottom: 4px; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.ml-auto { margin-left: auto; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.font-bold { font-weight: 700; }
.font-normal { font-weight: 400; }
.text-sm { font-size: 13px; }
.text-base { font-size: 15px; }
.text-lg { font-size: 17px; }
.text-xl { font-size: 20px; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rounded-full { border-radius: var(--radius-full); }
.border-b { border-bottom: 1px solid var(--border-color); }
.w-full { width: 100%; }
.cursor-pointer { cursor: pointer; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* Avatar sizes */
.avatar {
    flex-shrink: 0;
}

/* Avatar Initial */
.avatar-initial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--avatar-bg, #d9fdd3);
    color: var(--avatar-fg, #166534);
    font-weight: 600;
    flex-shrink: 0;
    border-radius: 50%;
    user-select: none;
}
.avatar-initial.avatar-sm, img.avatar-sm {
    width: 40px; height: 40px; font-size: 16px;
}
.avatar-initial.avatar-md, img.avatar-md {
    width: 48px; height: 48px; font-size: 20px;
}
.avatar-initial.avatar-xs, img.avatar-xs {
    width: 28px; height: 28px; font-size: 12px;
}
.avatar-initial.pro-avatar, img.pro-avatar {
    width: 96px; height: 96px; font-size: 40px;
}
.avatar-initial.profile-avatar, img.profile-avatar {
    width: 96px; height: 96px; font-size: 40px;
}
img.avatar-sm, img.avatar-md, img.avatar-xs, img.avatar-lg,
img.pro-avatar, img.profile-avatar {
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
img.avatar-lg { width: 72px; height: 72px; }
.avatar-initial.avatar-lg { width: 72px; height: 72px; font-size: 28px; }
.avatar-initial.ncm-avatar {
    width: 40px; height: 40px; font-size: 16px; border-radius: 50%;
}
.avatar-initial.chat-user-avatar {
    width: 40px; height: 40px; font-size: 16px; border-radius: 50%;
}
.avatar-initial.mlm-avatar {
    width: 48px; height: 48px; font-size: 20px; border-radius: 50%;
}
.avatar-initial.srm-avatar {
    width: 40px; height: 40px; font-size: 16px; border-radius: 50%;
}
.avatar-initial.conv-avatar {
    width: 48px; height: 48px; font-size: 20px; border-radius: 50%;
}

/* ============================
   MODERN REDESIGN - Shared
   ============================ */
.page-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-primary);
    position: sticky;
    top: 0;
    z-index: 20;
}
.page-top-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
}
.btn-icon-accent {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    border: none;
    background: var(--accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    transition: background .2s, transform .15s;
    text-decoration: none;
}
.btn-icon-accent:hover {
    background: var(--accent-hover);
    transform: scale(1.08);
}
.btn-icon-outline {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--border-color);
    background: transparent;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    transition: border-color .2s, color .2s;
    text-decoration: none;
}
.btn-icon-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Modern Tabs */
.modern-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-primary);
    overflow-x: auto;
}
.modern-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 2.5px solid transparent;
    transition: color .2s, border-color .2s;
    white-space: nowrap;
}
.modern-tab i { font-size: 13px; }
.modern-tab:hover {
    color: var(--text-primary);
    background: var(--bg-secondary);
}
.modern-tab.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* Empty State Modern */
.empty-state-modern {
    text-align: center;
    padding: 56px 24px;
    color: var(--text-secondary);
}
.empty-state-modern .empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.35;
}
.empty-state-modern h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 6px;
}
.empty-state-modern p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0 0 20px;
}
.empty-state-modern .btn {
    margin-top: 16px;
}

/* Feed List */
.feed-list {
    display: flex;
    flex-direction: column;
}

/* Load More */
.load-more-bar {
    padding: 20px;
    text-align: center;
}
.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--border-color);
    background: transparent;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
}
.load-more-btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* Pagination Bar */
.pagination-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    border-top: 1px solid var(--border-color);
}
.pagination-info {
    color: var(--text-secondary);
    font-size: 13px;
    margin-left: 12px;
}

/* ============================
   HOME - Quick Grid
   ============================ */
.quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
}
.quick-grid.quick-grid-pills {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 12px 16px;
}
.pill-qcard {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 10px 14px !important;
    border-radius: 9999px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    min-height: 40px !important;
}
.pill-qcard .qcard-title {
    display: block !important;
    width: 100% !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: inherit !important;
    margin: 0 auto !important;
    padding: 0 !important;
    text-align: center !important;
}
.qcard {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    border-radius: var(--radius-lg, 14px);
    background: var(--bg-secondary);
    text-decoration: none;
    color: var(--text-primary);
    transition: transform .15s, box-shadow .2s;
    position: relative;
    overflow: hidden;
}
.qcard:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.08));
}
.qcard-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
}
.qcard-text {
    display: flex;
    flex-direction: column;
}
.qcard-title {
    font-size: 14px;
    font-weight: 700;
}
.qcard-desc {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 2px;
}
.qcard-arrow {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 12px;
    color: var(--text-secondary);
    opacity: 0;
    transition: opacity .2s;
}
.qcard:hover .qcard-arrow { opacity: 1; }

/* ============================
   PLAKA SEARCH
   ============================ */
.search-hero {
    padding: 32px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-primary);
}
.search-hero-form {
    max-width: 520px;
    margin: 0 auto;
}
.search-input-wrap {
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-full);
    padding: 4px 6px 4px 16px;
    transition: border-color .2s, box-shadow .2s;
}
.search-input-wrap:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(15, 20, 25, 0.08);
}
.search-input-wrap i {
    color: var(--text-secondary);
    font-size: 15px;
    margin-right: 10px;
}
.search-hero-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 15px;
    color: var(--text-primary);
    outline: none;
    padding: 10px 0;
}
.search-hero-input::placeholder { color: var(--text-secondary); }
.search-clear {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 14px;
    padding: 4px 8px;
    display: none;
}
.search-hero-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-full);
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
}
.search-hero-btn:hover { background: var(--accent-hover); }

/* Filter Bar */
.filter-bar {
    display: flex;
    gap: 8px;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
    overflow-x: auto;
}
.filter-pill {
    padding: 7px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    border: 1.5px solid var(--border-color);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    white-space: nowrap;
    transition: all .2s;
}
.filter-pill:hover,
.filter-pill.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.result-count-bar {
    padding: 10px 20px;
    font-size: 13px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

/* User Result Card */
.user-result-list {
    display: flex;
    flex-direction: column;
}
.user-result-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-primary);
    transition: background .15s;
}
.user-result-card:hover {
    background: var(--bg-secondary);
}
.user-result-avatar {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-full);
    object-fit: cover;
    flex-shrink: 0;
}
.user-result-info {
    flex: 1;
    min-width: 0;
}
.user-result-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}
.user-result-handle {
    font-size: 13px;
    color: var(--text-secondary);
}
.user-result-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}
.tag-plaka {
    background: rgba(15, 20, 25, 0.08);
    color: var(--accent);
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
}
.tag-car {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 12px;
}
.user-result-right {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}
.price-tag {
    background: rgba(0,186,124,0.12);
    color: var(--success);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
}
.rental-tag {
    background: rgba(155,89,182,0.12);
    color: #9b59b6;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

/* ============================
   NOTIFICATIONS
   ============================ */
.notif-list {
    display: flex;
    flex-direction: column;
}
.notif-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-color);
    transition: background .15s;
    text-decoration: none;
    color: var(--text-primary);
    position: relative;
}
.notif-card:hover {
    background: var(--bg-secondary);
}
.notif-unread {
    background: rgba(15, 20, 25, 0.05);
}
.notif-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.notif-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    object-fit: cover;
    flex-shrink: 0;
}
.notif-content {
    flex: 1;
    min-width: 0;
}
.notif-text {
    font-size: 14px;
    line-height: 1.45;
    color: var(--text-primary);
}
.notif-text strong {
    font-weight: 700;
}
.notif-time {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
}
.notif-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--accent);
    flex-shrink: 0;
    margin-top: 6px;
}

/* ============================
   MESSAGES - Chat List
   ============================ */
.chat-search-bar {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
}
.chat-search-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-secondary);
    border-radius: var(--radius-full);
    padding: 8px 16px;
}
.chat-search-wrap i { color: var(--text-secondary); font-size: 14px; }
.chat-search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    color: var(--text-primary);
    outline: none;
}
.chat-search-input::placeholder { color: var(--text-secondary); }
.chat-list-modern {
    display: flex;
    flex-direction: column;
}
.conv-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-primary);
    transition: background .15s;
}
.conv-card:hover { background: var(--bg-secondary); }
.conv-unread { background: rgba(15, 20, 25, 0.05); }
.conv-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}
.conv-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    object-fit: cover;
}
.conv-online-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: var(--success);
    border: 2.5px solid var(--bg-primary);
    position: absolute;
    bottom: 0;
    right: 0;
}
.conv-body {
    flex: 1;
    min-width: 0;
}
.conv-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3px;
}
.conv-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}
.conv-time {
    font-size: 12px;
    color: var(--text-secondary);
    flex-shrink: 0;
}
.conv-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.conv-last-msg {
    font-size: 13px;
    color: var(--text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 240px;
}
.conv-you {
    color: var(--text-secondary);
    font-weight: 500;
}
.conv-badge {
    min-width: 20px;
    height: 20px;
    border-radius: var(--radius-full);
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    flex-shrink: 0;
}

/* ============================
   MESSAGES - Chat Detail
   ============================ */
.chat-top-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-primary);
    position: sticky;
    top: 0;
    z-index: 20;
}
.chat-back-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    border: none;
    background: transparent;
    color: var(--text-primary);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
    text-decoration: none;
}
.chat-back-btn:hover { background: var(--bg-secondary); }
.chat-user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    flex: 1;
}
.chat-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    object-fit: cover;
}
.chat-user-meta {}
.chat-user-name {
    font-size: 15px;
    font-weight: 700;
}
.chat-user-handle {
    font-size: 12px;
    color: var(--text-secondary);
}
.chat-messages-area {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow-y: auto;
    min-height: 400px;
    max-height: calc(100vh - 200px);
}
.chat-empty {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 14px;
    min-height: 200px;
}
.chat-date-pill {
    text-align: center;
    margin: 16px 0 8px;
}
.chat-date-pill span {
    background: var(--bg-secondary);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}
.msg-bubble {
    max-width: 75%;
    padding: 10px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.45;
    position: relative;
}
.msg-mine {
    align-self: flex-end;
    background: var(--accent);
    color: #fff;
    border-bottom-right-radius: 4px;
}
.msg-theirs {
    align-self: flex-start;
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}
.msg-text { margin: 0; }
.msg-time {
    font-size: 11px;
    margin-top: 4px;
    opacity: 0.65;
}
.msg-mine .msg-time { text-align: right; }
.chat-compose-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-primary);
}
.chat-compose-input {
    flex: 1;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-full);
    padding: 10px 18px;
    font-size: 14px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    outline: none;
    transition: border-color .2s;
}
.chat-compose-input:focus {
    border-color: var(--accent);
}
.chat-send-btn {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    border: none;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: background .2s, transform .15s;
}
.chat-send-btn:hover {
    background: var(--accent-hover);
    transform: scale(1.05);
}
.chat-blocked-bar {
    text-align: center;
    padding: 16px;
    color: var(--text-secondary);
    font-size: 14px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

/* ============================
   PROFILE - Modern
   ============================ */
.pro-cover {
    height: 140px;
    background: linear-gradient(135deg, var(--accent) 0%, #1D7A9E 100%);
    position: relative;
}
.pro-cover-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, var(--bg-primary) 100%);
}
.pro-card {
    padding: 0 20px 20px;
    margin-top: -50px;
    position: relative;
}
.pro-avatar-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.pro-avatar {
    width: 96px;
    height: 96px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 4px solid var(--bg-primary);
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.pro-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 8px;
}
.pro-identity {
    margin-top: 10px;
}
.pro-name {
    font-size: 22px;
    font-weight: 800;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-primary);
}
.pro-handle {
    font-size: 14px;
    color: var(--text-secondary);
}
.pro-bio {
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-primary);
    margin: 10px 0 0;
}
.pro-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 12px;
}
.pro-meta-item {
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 5px;
}
.pro-meta-item i {
    font-size: 13px;
    color: var(--text-secondary);
}
.pro-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}
.pro-stars {
    display: flex;
    gap: 2px;
    color: #FFD700;
    font-size: 14px;
}
.pro-rating-text {
    font-size: 13px;
    color: var(--text-secondary);
}
.pro-stats {
    display: flex;
    gap: 24px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
}
.pro-stat {
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    gap: 5px;
    font-size: 14px;
}
.pro-stat strong { font-weight: 800; }
.pro-stat span { color: var(--text-secondary); }
.pro-stat:hover strong { color: var(--accent); }

/* Profile Info Bar */
.pro-info-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-color);
}
.pro-info-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
}
.pro-info-chip.sell { background: rgba(0,186,124,0.1); color: var(--success); }
.pro-info-chip.swap { background: rgba(15, 20, 25, 0.08); color: var(--accent); }
.pro-info-chip.rental { background: rgba(155,89,182,0.1); color: #9b59b6; }
.pro-info-chip.phone { background: var(--bg-secondary); color: var(--text-primary); }
.pro-social-links {
    display: flex;
    gap: 8px;
    margin-left: auto;
}
.pro-social-btn {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    transition: transform .15s;
}
.pro-social-btn:hover { transform: scale(1.1); }
.pro-social-btn.fb { background: #1877F2; }
.pro-social-btn.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.pro-social-btn.yt { background: #FF0000; }

/* Detail Grid - Car Details */
.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    padding: 16px 20px;
}
.detail-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}
.detail-card.danger {
    background: rgba(231,76,60,0.08);
}
.detail-card-icon {
    font-size: 22px;
    color: var(--accent);
    margin-bottom: 8px;
}
.detail-card.danger .detail-card-icon { color: var(--danger); }
.detail-card-label {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 4px;
}
.detail-card-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

/* Review Card */
.review-card {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
}
.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.review-meta {
    display: flex;
    flex-direction: column;
}
.review-author {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}
.review-author:hover { text-decoration: underline; }
.review-time {
    font-size: 12px;
    color: var(--text-secondary);
}
.review-stars {
    display: flex;
    gap: 2px;
    color: #FFD700;
    font-size: 14px;
    margin-bottom: 6px;
}
.review-text {
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-primary);
    margin: 0;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 768px) {
    .quick-grid { grid-template-columns: 1fr; }
    .detail-grid { grid-template-columns: repeat(2, 1fr); }
    .pro-avatar { width: 72px; height: 72px; }
    .pro-card { margin-top: -36px; }
    .pro-name { font-size: 18px; }
    .pro-info-bar { flex-direction: column; align-items: flex-start; }
    .pro-social-links { margin-left: 0; }
    .msg-bubble { max-width: 88%; }
    .conv-last-msg { max-width: 160px; }
}

/* ============================
   AUTH PAGES – Full-Screen Modern
   ============================ */
.auth-body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-secondary);
}

.auth-wrapper {
    display: flex;
    min-height: 100vh;
}

/* ── Sol Dekoratif Panel ── */
.auth-side {
    flex: 0 0 420px;
    background: linear-gradient(135deg, #1D7A9E 0%, #2596BE 40%, #34B5E0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
    position: relative;
    overflow: hidden;
}
.auth-side-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
}
.auth-side::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    top: -120px;
    right: -160px;
}
.auth-side::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    bottom: -80px;
    left: -80px;
}
.auth-side-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 340px;
}
.auth-side-logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}
.auth-side-content h1 {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 12px;
    letter-spacing: -0.5px;
}
.auth-side-content p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.85;
    margin: 0 0 32px;
}
.auth-side-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.auth-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
}
.auth-feature i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

/* ── Sağ Form Panel ── */
.auth-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    background: var(--bg-primary);
}
.auth-box {
    width: 100%;
    max-width: 440px;
}
.auth-box-logo {
    display: none;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 28px;
}
.auth-box-logo i {
    font-size: 24px;
}
.auth-box-header {
    margin-bottom: 24px;
}
.auth-box-header h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.auth-box-header h2 i {
    color: var(--accent);
}

/* ── Tab Bar ── */
.auth-tab-bar {
    display: flex;
    border-radius: 12px;
    background: var(--bg-secondary);
    padding: 4px;
    margin-bottom: 28px;
}
.auth-tab {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 10px;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-secondary);
    transition: all .25s ease;
}
.auth-tab.active {
    background: var(--bg-primary);
    color: var(--accent);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.auth-tab:not(.active):hover {
    color: var(--text-primary);
}

/* ── Alert ── */
.auth-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(231,76,60,0.08);
    color: #e74c3c;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
    border: 1px solid rgba(231,76,60,0.15);
}
.auth-alert i {
    margin-top: 2px;
    flex-shrink: 0;
}
.auth-alert-success {
    background: rgba(0,186,124,0.08);
    color: #00ba7c;
    border-color: rgba(0,186,124,0.15);
}

/* ── Form ── */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.auth-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.auth-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.auth-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}
.auth-input-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    padding: 0 14px;
    background: var(--bg-secondary);
    transition: border-color .2s, box-shadow .2s;
}
.auth-input-wrap:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(15, 20, 25, 0.08);
    background: var(--bg-primary);
}
.auth-input-wrap i {
    color: var(--text-secondary);
    font-size: 14px;
    flex-shrink: 0;
}
.auth-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 10px;
    font-size: 14px;
    color: var(--text-primary);
    outline: none;
    font-family: inherit;
}
.auth-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}
.auth-eye {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px;
    font-size: 14px;
    display: flex;
    align-items: center;
}
.auth-eye:hover {
    color: var(--accent);
}

/* ── Submit ── */
.auth-submit {
    width: 100%;
    padding: 13px 24px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #2596BE 0%, #1D7A9E 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform .15s, box-shadow .2s;
    font-family: inherit;
    letter-spacing: 0.3px;
    margin-top: 4px;
}
.auth-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(94, 23, 235, 0.35);
}
.auth-submit:active {
    transform: translateY(0);
}

/* ── Footer text ── */
.auth-footer-text {
    text-align: center;
    font-size: 13px;
    color: var(--text-secondary);
    margin: 4px 0 0;
}
.auth-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}
.auth-link:hover {
    text-decoration: underline;
}

/* ── Auth Responsive ── */
@media (max-width: 900px) {
    .auth-side {
        display: none;
    }
    .auth-box-logo {
        display: flex;
    }
}
@media (max-width: 480px) {
    .auth-main {
        padding: 24px 16px;
    }
    .auth-row {
        grid-template-columns: 1fr;
    }
    .auth-tab-bar {
        margin-bottom: 20px;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   LEGAL / INFO PAGES (Hakkında, Gizlilik, Şartlar, İletişim)
   ═══════════════════════════════════════════════════════════════════ */

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 16px 40px;
    position: relative;
}

/* Dil Değiştirici */
.lang-switcher {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 8px;
    position: sticky;
    top: 8px;
    z-index: 10;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: var(--card-bg, #fff);
    border: 1px solid var(--border-color, #e0e0e0);
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent, #2563eb);
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    backdrop-filter: blur(8px);
}

.lang-btn:hover {
    background: var(--accent, #2563eb);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37,99,235,0.25);
}

/* Hero */
.legal-hero {
    text-align: center;
    padding: 48px 24px 36px;
    margin-bottom: 32px;
    background: linear-gradient(180deg, #1E2329 0%, #0F1419 100%);
    border-radius: 20px;
    color: #fff;
}

.legal-hero-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    font-size: 1.8rem;
}

.legal-hero h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: #fff;
}

.legal-hero-sub {
    font-size: 1.05rem;
    opacity: 0.9;
    margin: 0;
}

/* İçerik Alanı */
.legal-content {
    background: var(--card-bg, #fff);
    border-radius: 16px;
    padding: 36px 32px;
    border: 1px solid var(--border-color, #e0e0e0);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

/* Meta */
.legal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color, #e0e0e0);
    font-size: 0.85rem;
    color: var(--text-muted, #6b7280);
}

.legal-meta i {
    margin-right: 6px;
    color: var(--text-primary);
}

/* İçindekiler */
.legal-toc {
    background: var(--bg-secondary, #f8fafc);
    border: 1px solid var(--border-color, #e0e0e0);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 32px;
}

.legal-toc h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--text-primary, #111);
}

.legal-toc h3 i {
    margin-right: 8px;
    color: var(--text-primary);
}

.legal-toc ol {
    margin: 0;
    padding-left: 20px;
    columns: 2;
    column-gap: 24px;
}

.legal-toc li {
    margin-bottom: 6px;
    font-size: 0.88rem;
    break-inside: avoid;
}

.legal-toc a {
    color: var(--accent, #2563eb);
    text-decoration: none;
    transition: color 0.15s;
}

.legal-toc a:hover {
    color: #272C33;
    text-decoration: underline;
}

/* Section */
.legal-section {
    margin-bottom: 36px;
    scroll-margin-top: 80px;
}

.legal-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 14px;
    color: var(--text-primary, #111);
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border-color, #e0e0e0);
    display: inline-block;
}

.legal-section h2 i {
    margin-right: 8px;
    color: var(--text-primary);
}

.legal-section p {
    line-height: 1.75;
    color: var(--text-secondary, #374151);
    margin: 0 0 12px;
}

.legal-section a {
    color: var(--accent, #2563eb);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dashed var(--accent, #2563eb);
    transition: all 0.15s;
}

.legal-section a:hover {
    color: #272C33;
    border-bottom-style: solid;
}

/* Legal List */
.legal-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.legal-list li {
    position: relative;
    padding: 8px 0 8px 28px;
    line-height: 1.65;
    color: var(--text-secondary, #374151);
    border-bottom: 1px solid var(--border-color, #f0f0f0);
}

.legal-list li:last-child {
    border-bottom: none;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 16px;
    width: 8px;
    height: 8px;
    background: var(--text-primary);
    border-radius: 50%;
}

.legal-list li i {
    margin-right: 8px;
    color: var(--text-primary);
    width: 18px;
    text-align: center;
}

.legal-list-warn li::before {
    background: #ef4444;
}

/* Feature Grid */
.legal-page .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    margin: 16px 0;
}

.legal-page .feature-card {
    background: var(--bg-secondary, #f8fafc);
    border: 1px solid var(--border-color, #e0e0e0);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.25s ease;
}

.legal-page .feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: var(--border-color, #cbd5e1);
}

.legal-page .feature-card i {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: block;
}

.legal-page .feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--text-primary, #111);
}

.legal-page .feature-card p {
    font-size: 0.88rem;
    margin: 0;
    color: var(--text-muted, #6b7280);
    line-height: 1.55;
}

/* Legal Table */
.legal-table-wrap {
    overflow-x: auto;
    margin: 16px 0;
    border-radius: 10px;
    border: 1px solid var(--border-color, #e0e0e0);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.legal-table th {
    background: var(--accent, #2563eb);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
}

.legal-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color, #e0e0e0);
    color: var(--text-secondary, #374151);
}

.legal-table tr:last-child td {
    border-bottom: none;
}

.legal-table tr:nth-child(even) td {
    background: var(--bg-secondary, #f8fafc);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.contact-card {
    background: var(--bg-secondary, #f8fafc);
    border: 1px solid var(--border-color, #e0e0e0);
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.25s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: var(--accent, #2563eb);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-hover, #f1f5f9);
    border: 1px solid var(--border-color, #e0e0e0);
    border-radius: 50%;
    color: var(--text-primary, #111);
    font-size: 1.3rem;
}
.contact-card-icon i {
    color: var(--text-primary, #111) !important;
}

.contact-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 6px;
    color: var(--text-primary, #111);
}

.contact-card p {
    font-size: 0.85rem;
    color: var(--text-muted, #6b7280);
    margin: 0 0 12px;
}

.contact-link {
    display: inline-block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent, #2563eb) !important;
    text-decoration: none !important;
    border-bottom: none !important;
    word-break: break-all;
    transition: color 0.15s;
}

.contact-link:hover {
    color: #272C33 !important;
}

/* FAQ */
.faq-list {
    margin: 16px 0;
}

.faq-item {
    border: 1px solid var(--border-color, #e0e0e0);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item[open] {
    border-color: var(--accent, #2563eb);
}

.faq-item summary {
    padding: 14px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    color: var(--text-primary, #111);
    background: var(--bg-secondary, #f8fafc);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    color: var(--text-muted, #6b7280);
    transition: transform 0.25s;
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
    color: var(--accent, #2563eb);
}

.faq-item summary:hover {
    background: var(--border-color, #e8e8e8);
}

.faq-item p {
    padding: 14px 20px;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary, #374151);
}

/* Info Notice */
.info-notice {
    background: linear-gradient(135deg, #eff6ff, #f0fdf4);
    border-left: 4px solid var(--accent, #2563eb);
    border-radius: 10px;
    padding: 20px 24px;
    margin: 16px 0;
}

.info-notice p {
    margin: 0 0 8px;
    font-size: 0.9rem;
    line-height: 1.65;
}

.info-notice p:last-child {
    margin-bottom: 0;
}

/* Alt Bağlantılar */
.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    padding-top: 28px;
    margin-top: 36px;
    border-top: 1px solid var(--border-color, #e0e0e0);
}

.legal-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--bg-secondary, #f8fafc);
    border: 1px solid var(--border-color, #e0e0e0);
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-primary, #111) !important;
    text-decoration: none !important;
    border-bottom: none !important;
    transition: all 0.2s;
}

.legal-links a:hover {
    background: var(--accent, #2563eb);
    color: #fff !important;
    border-color: var(--accent, #2563eb);
}

.legal-links a i {
    color: var(--accent, #2563eb);
    font-size: 0.85rem;
}

.legal-links a:hover i {
    color: #fff;
}

/* Footer */
.legal-footer {
    text-align: center;
    padding-top: 20px;
    margin-top: 16px;
}

.legal-footer p {
    font-size: 0.82rem;
    color: var(--text-muted, #6b7280);
    margin: 0;
}

/* Dark Theme */
[data-theme="dark"] .legal-hero {
    background: linear-gradient(135deg, #1e40af 0%, #5b21b6 100%);
}

[data-theme="dark"] .info-notice {
    background: linear-gradient(135deg, #1e293b, #1a2332);
    border-left-color: #3b82f6;
}

[data-theme="dark"] .faq-item summary {
    background: var(--bg-secondary, #1e293b);
}

[data-theme="dark"] .faq-item summary:hover {
    background: var(--border-color, #334155);
}

/* Responsive */
@media (max-width: 768px) {
    .legal-hero {
        padding: 32px 18px 28px;
        border-radius: 14px;
    }

    .legal-hero h1 {
        font-size: 1.5rem;
    }

    .legal-hero-icon {
        width: 58px;
        height: 58px;
        font-size: 1.4rem;
    }

    .legal-content {
        padding: 24px 18px;
    }

    .legal-toc ol {
        columns: 1;
    }

    .legal-page .feature-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .legal-section h2 {
        font-size: 1.15rem;
    }

    .legal-links {
        flex-direction: column;
        align-items: stretch;
    }

    .legal-links a {
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   MODERN PAGE COMPONENTS (Bildirimler, Mesajlar, Plaka Ara)
   ═══════════════════════════════════════════════════════════════════ */

/* ── Modern Page Header ─────────────────────────────────────────── */
.modern-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 16px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-primary);
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(12px);
    background: var(--bg-glass);
}

.mph-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mph-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: linear-gradient(180deg, #1E2329 0%, #0F1419 100%);
    color: #fff;
    flex-shrink: 0;
}

.mph-icon-search {
    background: linear-gradient(135deg, var(--accent), #0ea5e9);
}

.mph-icon-msg {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
}

.mph-plain-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--text-primary);
    background: transparent;
    flex-shrink: 0;
}

.mph-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
}

.mph-sub {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 2px 0 0;
}

.mph-actions {
    display: flex;
    gap: 8px;
}

.mph-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.mph-btn:hover {
    background: #0F1419;
    color: #fff;
    border-color: #0F1419;
}

.mph-btn i {
    font-size: 0.9rem;
}

/* ── Modern Empty State ─────────────────────────────────────────── */
.modern-empty {
    text-align: center;
    padding: 60px 20px;
}

.modern-empty-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: var(--accent-light);
    color: var(--accent);
}

.modern-empty-warn {
    background: rgba(239,68,68,0.1);
    color: var(--danger);
}

.modern-empty h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--text-primary);
}

.modern-empty p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   NOTIFICATIONS - Modern
   ═══════════════════════════════════════════════════════════════════ */

.notif-tabs {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.notif-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.notif-tab:hover {
    border-color: #0F1419;
    color: #0F1419;
}

.notif-tab.active {
    background: #0F1419;
    color: #fff;
    border-color: #0F1419;
}

.notif-list-modern {
    display: flex;
    flex-direction: column;
}

.notif-card-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s;
    position: relative;
}

.notif-card-modern:hover {
    background: var(--bg-secondary);
    transform: translateX(2px);
}

.notif-unread-modern {
    background: rgba(15, 20, 25, 0.05);
}

.notif-unread-modern .ncm-indicator {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #0F1419;
    border-radius: 0 4px 4px 0;
}

.ncm-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.ncm-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.ncm-content {
    flex: 1;
    min-width: 0;
}

.ncm-text {
    font-size: 0.9rem;
    line-height: 1.5;
}

.ncm-text strong {
    font-weight: 700;
}

.ncm-time {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 3px;
}

.ncm-time i {
    margin-right: 3px;
}

.ncm-dot {
    width: 9px;
    height: 9px;
    background: #0F1419;
    border-radius: 50%;
    flex-shrink: 0;
    animation: badgePulse 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════════════
   PLAKA ARA - Modern
   ═══════════════════════════════════════════════════════════════════ */

.search-box-modern {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
}

.sbm-form {
    display: flex;
}

.sbm-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 14px;
    padding: 4px 6px 4px 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.sbm-input-group:focus-within {
    border-color: #0F1419;
    box-shadow: 0 0 0 3px rgba(15, 20, 25, 0.08);
}

.sbm-icon {
    color: var(--text-muted);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.sbm-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-primary);
    outline: none;
}

.sbm-input::placeholder {
    color: var(--text-muted);
}

.sbm-clear {
    color: var(--text-muted);
    padding: 6px;
    font-size: 0.85rem;
    transition: color 0.15s;
}

.sbm-clear:hover {
    color: var(--danger);
}

.sbm-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    background: #0F1419;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.sbm-btn:hover {
    background: #4c0fd4;
    transform: scale(1.05);
}

.search-filters-modern {
    display: flex;
    gap: 8px;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
}

.sfm-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s;
}

.sfm-pill:hover {
    border-color: #0F1419;
    color: #0F1419;
}

.sfm-pill.active {
    background: #0F1419;
    color: #fff;
    border-color: #0F1419;
}

/* Search Results */
.search-results-modern {
    display: flex;
    flex-direction: column;
}

.srm-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s;
}

.srm-card:hover {
    background: var(--bg-secondary);
    transform: translateX(2px);
}

.srm-avatar {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--border-color);
}

.srm-info {
    flex: 1;
    min-width: 0;
}

.srm-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.srm-verified {
    color: #0F1419;
    font-size: 13px;
}

.srm-handle {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 1px;
}

.srm-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

.srm-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
}

.srm-tag-plaka {
    background: rgba(15, 20, 25, 0.08);
    color: #0F1419;
}

.srm-tag-car {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.srm-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    flex-shrink: 0;
}

.srm-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--success);
}

.srm-rental {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    background: var(--accent-light);
    padding: 3px 8px;
    border-radius: 6px;
}

.srm-arrow {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* ═══════════════════════════════════════════════════════════════════
   MESSAGES LIST - Modern
   ═══════════════════════════════════════════════════════════════════ */

.msg-search-modern {
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
}

.msm-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 14px;
    padding: 8px 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.msm-wrap:focus-within {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.msm-icon {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.msm-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.9rem;
    color: var(--text-primary);
    outline: none;
}

.msm-input::placeholder {
    color: var(--text-muted);
}

.msg-list-modern {
    display: flex;
    flex-direction: column;
}

.mlm-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s;
    position: relative;
}

.mlm-card:hover {
    background: var(--bg-secondary);
    transform: translateX(2px);
}

.mlm-unread {
    background: rgba(37,99,235,0.04);
}

.mlm-unread::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #2563eb;
    border-radius: 0 4px 4px 0;
}

.mlm-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.mlm-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
}

.mlm-online {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--success);
    border: 2.5px solid var(--bg-primary);
    position: absolute;
    bottom: 0;
    right: 0;
}

.mlm-body {
    flex: 1;
    min-width: 0;
}

.mlm-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3px;
}

.mlm-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.mlm-verified {
    color: var(--accent);
    font-size: 12px;
}

.mlm-time {
    font-size: 0.78rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

.mlm-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mlm-msg {
    font-size: 0.85rem;
    color: var(--text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 260px;
}

.mlm-you {
    color: var(--text-muted);
    font-weight: 500;
}

.mlm-badge {
    min-width: 22px;
    height: 22px;
    border-radius: 12px;
    background: #2563eb;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    animation: badgePulse 2s ease-in-out infinite;
}

.mlm-arrow {
    color: var(--text-muted);
    font-size: 0.75rem;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.2s;
}

.mlm-card:hover .mlm-arrow {
    opacity: 1;
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .modern-page-header {
        padding: 14px 16px 12px;
    }

    .mph-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .mph-title {
        font-size: 1.1rem;
    }

    .mph-btn span {
        display: none;
    }

    .notif-tabs {
        padding: 10px 12px;
    }

    .search-box-modern {
        padding: 12px 14px;
    }

    .search-filters-modern {
        padding: 10px 14px;
    }

    .srm-card, .mlm-card, .notif-card-modern {
        padding: 12px 14px;
    }

    .mlm-msg {
        max-width: 160px;
    }

    .srm-avatar {
        width: 42px;
        height: 42px;
    }
}
.phone-verification-page .verification-heading{display:flex;align-items:flex-start;gap:14px;margin-bottom:20px}.phone-verification-page .verification-heading h2,.phone-verification-page .verification-success-card h2{font-size:20px;margin:0 0 5px}.phone-verification-page .verification-heading p,.phone-verification-page .verification-success-card p{margin:0}.verification-heading-icon,.verification-success-icon{width:48px;height:48px;border-radius:14px;display:grid;place-items:center;flex:0 0 auto;background:rgba(35,118,255,.12);color:var(--primary,#2376ff);font-size:21px}.verification-success-card{display:flex;gap:15px;align-items:center}.verification-success-icon{background:rgba(25,170,95,.12);color:#169653}.verification-quota{display:flex;justify-content:space-between;gap:12px;align-items:center;padding:12px 14px;margin-bottom:18px;border-radius:12px;background:var(--bg-hover,#f5f7fb);font-size:14px}.verification-quota span{display:flex;gap:8px;align-items:center}.verification-quota.is-limit{background:rgba(220,53,69,.09);color:#b42332}.verification-limit-message{display:grid;gap:5px;padding:14px;margin-bottom:18px;border:1px solid rgba(220,53,69,.22);border-radius:12px;background:rgba(220,53,69,.06)}.verification-limit-message span{font-size:13px}.phone-input-wrap{display:flex;align-items:center;border:1px solid var(--border-color,#dfe3eb);border-radius:12px;overflow:hidden;background:var(--bg-card,#fff)}.phone-input-wrap>span{padding:0 12px;font-weight:700;color:var(--text-secondary,#687184);border-right:1px solid var(--border-color,#dfe3eb)}.phone-input-wrap .form-control{border:0!important;border-radius:0!important;box-shadow:none!important}.verification-send-form .btn,.verification-code-card .btn{width:100%;justify-content:center}.verification-rule{display:flex;gap:7px;justify-content:center;align-items:center;margin:12px 0 0;color:var(--text-secondary,#687184);font-size:12px}.verification-code-card{margin-top:14px!important}.verification-code-title{display:flex;justify-content:space-between;align-items:center;margin-bottom:16px}.verification-code-title>div{display:grid;gap:4px}.verification-code-title span{font-size:13px;color:var(--text-secondary,#687184)}.verification-code-title>i{font-size:22px;color:var(--primary,#2376ff)}.verification-code-input{text-align:center;letter-spacing:10px;font-size:24px;font-weight:800}.verification-admin-rules{display:grid;gap:8px;margin:0 0 16px;padding:12px;border-radius:10px;background:var(--admin-bg-soft,#f5f7fb);font-size:13px}.verification-admin-rules span{display:flex;align-items:center;gap:8px}.verification-admin-rules i{width:16px;text-align:center}@media(max-width:560px){.verification-quota{align-items:flex-start;flex-direction:column}.verification-heading-icon{width:42px;height:42px}.verification-rule{align-items:flex-start;text-align:left}}

/* Mesaj PIN güvenliği */
.pin-forgot-link{display:none;align-items:center;justify-content:center;margin:2px auto 14px;color:var(--primary,#0F1419);font-size:13px;font-weight:700;text-decoration:none}.pin-forgot-link:hover{text-decoration:underline}.message-pin-page{max-width:760px;margin:0 auto}.message-pin-intro{display:flex;align-items:center;gap:16px}.message-pin-intro h2{margin:0 0 5px;font-size:20px}.message-pin-intro p{margin:0}.message-pin-shield{width:54px;height:54px;flex:0 0 54px;display:grid;place-items:center;border-radius:16px;background:color-mix(in srgb,var(--primary,#0F1419) 13%,transparent);color:var(--primary,#0F1419);font-size:24px}.message-pin-state{display:flex;align-items:center;gap:13px}.message-pin-state>i{color:var(--primary,#0F1419);font-size:22px}.message-pin-state>div{display:grid;gap:4px}.message-pin-state span{color:var(--text-secondary,#687184);font-size:13px}.message-pin-email-row{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-bottom:16px;padding-bottom:16px;border-bottom:1px solid var(--border-color,#e2e6ed)}.message-pin-email-row>div{display:grid;gap:4px}.message-pin-email-row span{color:var(--text-secondary,#687184);font-size:12px}.message-pin-email-row strong{font-size:16px}.message-pin-email-row>i{color:var(--primary,#0F1419);font-size:25px}.message-pin-warning{display:flex;align-items:flex-start;gap:11px;margin-bottom:16px;padding:13px;border:1px solid rgba(217,143,0,.3);border-radius:12px;background:rgba(217,143,0,.08);color:#9a6500}.message-pin-warning>div{display:grid;gap:3px}.message-pin-warning span{font-size:12px}.message-pin-send-form .btn,.message-pin-reset-form .btn{width:100%;justify-content:center}.message-pin-send-form .form-help{display:block;margin-top:10px;text-align:center}.message-pin-reset-form{margin-top:14px!important}.message-pin-form-title{display:flex;align-items:center;justify-content:space-between;gap:14px;margin-bottom:18px}.message-pin-form-title>div{display:grid;gap:4px}.message-pin-form-title span{color:var(--text-secondary,#687184);font-size:12px}.message-pin-form-title>i{color:var(--primary,#0F1419);font-size:23px}.message-pin-number{text-align:center;letter-spacing:8px;font-size:21px;font-weight:800}@media(max-width:560px){.message-pin-intro{align-items:flex-start}.message-pin-shield{width:46px;height:46px;flex-basis:46px}.message-pin-reset-form .form-row{grid-template-columns:1fr}}
.message-pin-enabled{display:flex;align-items:center;gap:6px;color:#169653}.message-pin-email-row small{color:var(--text-secondary,#687184);font-size:12px}.message-pin-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px}.message-pin-actions form,.message-pin-actions button{width:100%}.btn-outline-danger{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:11px 16px;border:1px solid rgba(220,53,69,.4);border-radius:10px;background:transparent;color:#c6283c;font-weight:700;cursor:pointer}.btn-outline-danger:hover{background:rgba(220,53,69,.08);border-color:#c6283c}.btn-outline-danger:disabled{opacity:.48;cursor:not-allowed}.message-pin-quota-note{display:block;margin-top:12px;text-align:center}.message-pin-disable-note{display:flex;align-items:center;gap:9px;margin:0 0 14px;padding:12px;border-radius:10px;background:rgba(220,53,69,.08);color:#b42332;font-size:13px}@media(max-width:560px){.message-pin-actions{grid-template-columns:1fr}}