/* assets/css/main.css */

:root {
    --primary: #1a56db;
    --primary-dark: #1341a8;
    --primary-light: #e8f0fe;
    --secondary: #ff6b35;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #0f172a;
    --text: #1e293b;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --bg-light: #f8fafc;
    --sidebar-bg: #0f172a;
    --sidebar-width: 260px;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
}

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

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.6;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Syne', sans-serif; }

/* =================== NAVBAR =================== */
.navbar-main {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    z-index: 1000;
}

.navbar-brand {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary) !important;
}

.navbar-main .nav-link {
    color: var(--text);
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all .2s;
}

.navbar-main .nav-link:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.btn-ghost {
    background: none;
    border: none;
    color: var(--text);
    font-weight: 500;
    padding: 8px 16px;
}

.btn-ghost:hover { color: var(--primary); background: var(--primary-light); }

/* =================== HERO =================== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    overflow: hidden;
    padding: 80px 0;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}
.shape-1 { width: 600px; height: 600px; background: var(--primary); top: -200px; right: -100px; }
.shape-2 { width: 300px; height: 300px; background: var(--secondary); bottom: -100px; left: -50px; }
.shape-3 { width: 200px; height: 200px; background: #06b6d4; top: 50%; right: 30%; }

.min-vh-80 { min-height: 70vh; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 6px 16px;
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    font-weight: 500;
}

.badge-dot {
    width: 8px; height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 16px 0;
}

.text-gradient {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 480px; }

.btn-hero-primary {
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all .3s;
    text-decoration: none;
}

.btn-hero-primary:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26,86,219,0.4);
}

.btn-hero-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all .3s;
    text-decoration: none;
}

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

.hero-stats .stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

.hero-stats .stat-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
}

/* Hero illustration */
.hero-illustration {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.truck-animation {
    font-size: 8rem;
    color: rgba(255,255,255,0.15);
    animation: truckmove 4s ease-in-out infinite;
}

@keyframes truckmove {
    0%, 100% { transform: translateX(0) rotate(-2deg); }
    50% { transform: translateX(20px) rotate(2deg); }
}

.floating-card {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.card-1 { top: 20%; left: 0; animation-delay: 0s; }
.card-2 { bottom: 25%; right: 0; animation-delay: 1s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* =================== SERVICES STRIP =================== */
.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px 12px;
    border-radius: var(--radius);
    background: #fff;
    border: 2px solid var(--border);
    text-decoration: none;
    transition: all .3s;
    cursor: pointer;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-label {
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--text);
}

.service-blue .service-icon { background: #dbeafe; color: #1d4ed8; }
.service-green .service-icon { background: #d1fae5; color: #065f46; }
.service-orange .service-icon { background: #ffedd5; color: #9a3412; }
.service-purple .service-icon { background: #ede9fe; color: #5b21b6; }
.service-red .service-icon { background: #fee2e2; color: #991b1b; }

.service-blue:hover { border-color: #1d4ed8; }
.service-green:hover { border-color: #065f46; }
.service-orange:hover { border-color: #9a3412; }
.service-purple:hover { border-color: #5b21b6; }
.service-red:hover { border-color: #991b1b; }

/* =================== SECTIONS =================== */
.py-6 { padding-top: 5rem; padding-bottom: 5rem; }

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
}

.section-subtitle { color: var(--text-muted); font-size: 1.05rem; }

/* Steps */
.step-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 36px 28px;
    position: relative;
    transition: all .3s;
    border: 1px solid var(--border);
}

.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.step-number {
    font-family: 'Syne', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-light);
    position: absolute;
    top: 16px;
    right: 24px;
    line-height: 1;
}

.step-icon {
    width: 64px; height: 64px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 16px;
}

/* =================== REQUEST PREVIEW CARDS =================== */
.request-preview-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    transition: all .3s;
}

.request-preview-card:hover { box-shadow: var(--shadow); }

.request-preview-card.blurred { position: relative; }
.request-preview-card.blurred .card-header-strip,
.request-preview-card.blurred .card-body { filter: blur(5px); user-select: none; }

.blur-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.3);
    backdrop-filter: blur(2px);
    z-index: 2;
    border-radius: var(--radius);
}

.blur-message {
    text-align: center;
    background: #fff;
    padding: 20px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.blur-message i { font-size: 1.5rem; color: var(--primary); display: block; }
.blur-message p { color: var(--text); font-weight: 500; font-size: 0.9rem; margin-bottom: 10px; }

.card-header-strip {
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.type-evden_eve { background: #dbeafe; color: #1d4ed8; }
.type-parca_esya { background: #d1fae5; color: #065f46; }
.type-arac_nakliyat { background: #ffedd5; color: #9a3412; }
.type-ofis_tasima { background: #ede9fe; color: #5b21b6; }
.type-esya_depolama { background: #fee2e2; color: #991b1b; }

.request-info { display: flex; flex-direction: column; gap: 6px; font-size: 0.88rem; color: var(--text-muted); }

/* =================== COMPANY CARDS =================== */
.company-card-link { text-decoration: none; }

.company-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid var(--border);
    position: relative;
    transition: all .3s;
}

.company-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.company-card.premium { border-color: #fbbf24; }

.premium-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
}

.company-logo img {
    width: 52px; height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
}

.logo-placeholder {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #7c3aed);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
}

/* =================== CTA SECTION =================== */
.cta-box {
    background: linear-gradient(135deg, var(--primary), #7c3aed);
    border-radius: 24px;
    padding: 60px 40px;
    color: #fff;
}

.cta-box h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 12px; }
.cta-box p { font-size: 1.1rem; opacity: .85; }

/* =================== FOOTER =================== */
.main-footer { background: var(--dark); color: rgba(255,255,255,0.8); }

.footer-brand {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: #fff; }

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    text-decoration: none;
    margin-left: 8px;
    transition: all .2s;
}

.social-links a:hover { background: var(--primary); }

/* =================== PANEL LAYOUT =================== */
.panel-wrapper { display: flex; min-height: 100vh; }

.panel-sidebar {
    width: var(--sidebar-width);
    background: var(--sidebar-bg);
    position: fixed;
    left: 0; top: 0; bottom: 0;
    display: flex;
    flex-direction: column;
    z-index: 100;
    overflow-y: auto;
}

.sidebar-logo {
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sidebar-logo a {
    color: #fff;
    text-decoration: none;
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-nav {
    flex: 1;
    padding: 16px 0;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    border-radius: 0;
    transition: all .2s;
    position: relative;
}

.sidebar-nav a:hover, .sidebar-nav a.active {
    color: #fff;
    background: rgba(255,255,255,0.08);
}

.sidebar-nav a.active::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--primary);
    border-radius: 0 3px 3px 0;
}

.sidebar-nav a .icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    flex-shrink: 0;
}

.sidebar-nav a.active .icon, .sidebar-nav a:hover .icon {
    background: rgba(255,255,255,0.12);
}

.sidebar-footer {
    padding: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.sidebar-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    text-decoration: none;
    color: #fff;
    transition: all .2s;
}

.sidebar-user:hover { background: rgba(255,255,255,0.1); color: #fff; }

.sidebar-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.panel-main {
    margin-left: var(--sidebar-width);
    flex: 1;
    background: var(--bg-light);
    min-height: 100vh;
}

.panel-header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 16px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 50;
}

.panel-header h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.panel-content { padding: 28px; }

/* Stats Cards */
.stat-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.stat-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.stat-icon.blue { background: #dbeafe; color: #1d4ed8; }
.stat-icon.green { background: #d1fae5; color: #065f46; }
.stat-icon.orange { background: #ffedd5; color: #9a3412; }
.stat-icon.purple { background: #ede9fe; color: #5b21b6; }

.stat-value { font-size: 1.8rem; font-weight: 800; font-family: 'Syne', sans-serif; line-height: 1; }
.stat-name { color: var(--text-muted); font-size: 0.85rem; margin-top: 4px; }

/* Cards */
.content-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
}

.content-card .card-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
}

.content-card .card-body { padding: 24px; }

/* =================== REQUEST FORM =================== */
.request-type-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.req-type-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    border: 2px solid var(--border);
    background: #fff;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all .2s;
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.req-type-btn .icon {
    font-size: 1.6rem;
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.req-type-btn span { font-size: 0.8rem; font-weight: 600; color: var(--text); }

.req-type-btn.active, .req-type-btn:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.req-type-btn.active .icon { background: var(--primary-light); color: var(--primary); }

.form-section { display: none; }
.form-section.active { display: block; }

/* =================== OFFER CARDS =================== */
.offer-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 20px;
    transition: all .3s;
}

.offer-card:hover { box-shadow: var(--shadow); }

.offer-card.accepted { border-color: var(--success); border-width: 2px; }

.offer-price {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

/* =================== MESSAGES =================== */
.message-thread-list { display: flex; flex-direction: column; gap: 1px; }

.thread-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: #fff;
    cursor: pointer;
    transition: all .15s;
    border-bottom: 1px solid var(--border);
}

.thread-item:hover { background: var(--bg-light); }
.thread-item.unread { background: #eff6ff; }
.thread-item.unread .thread-name { font-weight: 700; }

.thread-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #7c3aed);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.message-bubble-wrap { display: flex; flex-direction: column; gap: 12px; padding: 20px; }

.message-bubble {
    max-width: 70%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.92rem;
    line-height: 1.5;
}

.message-bubble.sent {
    background: var(--primary);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

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

.message-time { font-size: 0.72rem; color: rgba(255,255,255,0.7); margin-top: 4px; text-align: right; }
.message-time.dark { color: var(--text-muted); }

/* =================== PREMIUM BLUR =================== */
.premium-blur-wrap { position: relative; overflow: hidden; }
.premium-blur-wrap.blurred > *:not(.premium-gate) { filter: blur(8px); pointer-events: none; }

.premium-gate {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.premium-gate-box {
    background: #fff;
    border-radius: 20px;
    padding: 36px 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    max-width: 360px;
}

.premium-gate-icon { font-size: 3rem; color: #f59e0b; margin-bottom: 12px; }
.premium-gate-box h5 { font-size: 1.3rem; font-weight: 800; }

/* =================== ADMIN =================== */
.admin-topbar {
    background: var(--dark);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 200;
}

.admin-topbar .brand { color: #fff; font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 800; }
.admin-topbar .admin-name { color: rgba(255,255,255,0.8); font-size: 0.9rem; }

.admin-layout { display: flex; min-height: calc(100vh - 55px); position: relative; }

.admin-sidebar {
    width: 240px;
    background: #1e293b;
    flex-shrink: 0;
    position: sticky;
    top: 55px;
    height: calc(100vh - 55px);
    overflow-y: auto;
    overflow-x: hidden;
}

.admin-sidebar a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all .2s;
    border-left: 3px solid transparent;
    white-space: nowrap;
}

.admin-sidebar a:hover, .admin-sidebar a.active {
    color: #fff;
    background: rgba(255,255,255,0.07);
    border-left-color: var(--primary);
}

.admin-content { flex: 1; background: var(--bg-light); padding: 28px; }

/* =================== COMPANIES PAGE =================== */
.filter-bar {
    background: #fff;
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid var(--border);
    margin-bottom: 24px;
}

/* =================== FIRM PROFILE =================== */
.firm-hero {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    padding: 60px 0 40px;
    color: #fff;
}

.firm-logo-big {
    width: 100px; height: 100px;
    border-radius: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    object-fit: cover;
}

.gallery-thumb {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform .2s;
}

.gallery-thumb:hover { transform: scale(1.03); }

/* =================== ALERTS / BADGES =================== */
.badge-premium {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}

/* =================== TABLES =================== */
.data-table { background: #fff; border-radius: var(--radius); overflow: hidden; }
.data-table th { background: var(--bg-light); font-weight: 600; font-size: 0.85rem; color: var(--text-muted); padding: 14px 16px; }
.data-table td { padding: 14px 16px; vertical-align: middle; font-size: 0.9rem; }
.data-table tr:hover td { background: var(--bg-light); }

/* =================== FORMS =================== */
.form-label { font-weight: 600; font-size: 0.88rem; color: var(--text); margin-bottom: 6px; }
.form-control, .form-select { border: 1.5px solid var(--border); border-radius: 8px; padding: 10px 14px; font-size: 0.92rem; transition: border-color .2s; }
.form-control:focus, .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,86,219,0.12); }

/* =================== BUTTONS =================== */
.btn-primary { background: var(--primary); border-color: var(--primary); border-radius: 8px; font-weight: 600; }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-outline-primary { border-color: var(--primary); color: var(--primary); border-radius: 8px; font-weight: 600; }
.btn-outline-primary:hover { background: var(--primary); color: #fff; }

/* =================== RESPONSIVE =================== */
@media (max-width: 768px) {
    .panel-sidebar { transform: translateX(-100%); transition: transform .3s; }
    .panel-sidebar.open { transform: translateX(0); }
    .panel-main { margin-left: 0; }
    .panel-content { padding: 16px; }
    .admin-sidebar { display: none; }
    .request-type-tabs { gap: 8px; }
    .req-type-btn { min-width: 90px; padding: 12px; }
}

/* Divider */
.divider-v { width: 1px; height: 28px; background: var(--border); }

/* Stars */
.stars i { font-size: 0.9rem; }

/* Notification badge */
.notif-badge {
    background: var(--danger);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    margin-left: auto;
}

/* =================== ADMIN SIDEBAR SECTION LABEL =================== */
.sidebar-section-label {
    padding: 10px 20px 4px;
    color: rgba(255,255,255,.35);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-top: 6px;
}

/* =================== ADMIN SIDEBAR DÜZELTME =================== */
/* Section başlıkları */
.admin-sidebar .sidebar-section-label {
    padding: 12px 20px 4px;
    color: rgba(255,255,255,.3);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-top: 4px;
    pointer-events: none;
    white-space: nowrap;
}

/* Notif badge sidebar içinde */
.admin-sidebar a .notif-badge {
    margin-left: auto;
    background: var(--danger);
    color: #fff;
    font-size: .62rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* Admin content area */
.admin-content {
    flex: 1;
    background: var(--bg-light);
    padding: 28px;
    min-width: 0;
    overflow-x: auto;
}

/* Admin topbar height fix */
.admin-topbar {
    height: 55px;
}
