/* ============ RESET & VARIABLES ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --bg: #f4f5f7;
    --bg-white: #ffffff;
    --bg-dark: #1a1a2e;
    --bg-dark-card: #22223b;
    --border: #e8e8ee;
    --text: #1a1a2e;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --primary: #1a1a2e;
    --accent: #6c5ce7;
    --green: #81b29a;
    --blue: #6c9cfc;
    --yellow: #ffc857;
    --orange: #e07a5f;
    --red: #e63946;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 2px 12px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.08);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

/* ============ LOGIN ============ */
.login-screen {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #0a0a0f;
    display: flex; z-index: 2000;
}

/* Left visual panel */
.login-visual {
    position: relative; width: 45%; height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 70%, #e94560 100%);
    overflow: hidden;
}
.login-visual::before {
    content: ''; position: absolute; top: -20%; right: -30%; width: 80%; height: 80%;
    background: radial-gradient(circle, rgba(233,69,96,0.3) 0%, transparent 70%);
    border-radius: 50%;
}
.login-visual::after {
    content: ''; position: absolute; bottom: -10%; left: -20%; width: 70%; height: 60%;
    background: radial-gradient(circle, rgba(108,92,231,0.25) 0%, transparent 70%);
    border-radius: 50%;
}
.login-visual-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    display: flex; align-items: flex-start; padding: 40px;
    z-index: 2;
}
.login-visual-gradient {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 40%;
    background: linear-gradient(to top, rgba(10,10,15,0.7) 0%, transparent 100%);
    z-index: 1;
}
.login-brand {
    display: flex; align-items: center;
}
.brand-logo-img {
    height: 48px; width: auto;
    filter: drop-shadow(0 0 12px rgba(0,0,0,0.5)) brightness(1.8);
}

/* Right form panel */
.login-panel {
    flex: 1; display: flex; align-items: center; justify-content: center;
    padding: 40px;
    background: #0a0a0f;
}
.login-panel-inner {
    width: 100%; max-width: 420px;
}
.login-heading {
    font-size: 36px; font-weight: 800; color: #fff;
    line-height: 1.2; margin-bottom: 12px;
}
.login-subtext {
    font-size: 14px; color: rgba(255,255,255,0.4);
    margin-bottom: 36px;
}

.login-field {
    margin-bottom: 14px;
}
.login-field input {
    width: 100%; padding: 16px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px; font-size: 15px;
    color: #fff; font-family: inherit;
    transition: border-color 0.2s, background 0.2s;
}
.login-field input::placeholder {
    color: rgba(255,255,255,0.3);
}
.login-field input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.09);
}

.login-btn {
    width: 100%; padding: 16px 24px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px; font-size: 15px; font-weight: 600;
    color: #fff; cursor: pointer; margin-top: 10px;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    font-family: inherit;
    transition: background 0.2s, border-color 0.2s;
}
.login-btn:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.2);
}
.login-btn svg {
    transition: transform 0.2s;
}
.login-btn:hover svg {
    transform: translateX(4px);
}

.login-error {
    display: none;
    background: rgba(230,57,70,0.15);
    border: 1px solid rgba(230,57,70,0.3);
    color: #ff6b7a;
    padding: 10px 14px; border-radius: 12px;
    font-size: 13px; margin-bottom: 16px;
}
.login-error.show { display: block; }

.login-hint {
    text-align: center; font-size: 12px;
    color: rgba(255,255,255,0.25);
    margin-top: 28px; line-height: 1.6;
}

/* Mobile login */
@media (max-width: 768px) {
    .login-screen { flex-direction: column; }
    .login-visual {
        width: 100%; height: 220px; flex-shrink: 0;
        border-radius: 0 0 32px 32px;
    }
    .login-panel { padding: 32px 24px; }
    .login-heading { font-size: 28px; }
}
@media (max-width: 480px) {
    .login-visual { height: 180px; }
    .login-heading { font-size: 24px; }
    .login-panel { padding: 24px 20px; }
}

/* ============ APP SHELL ============ */
.app-shell { display: flex; min-height: 100vh; }

/* ============ SIDEBAR (DESKTOP) ============ */
.sidebar {
    width: 240px; background: var(--bg-white); border-right: 1px solid var(--border);
    padding: 24px 16px; position: fixed; height: 100vh;
    display: flex; flex-direction: column; z-index: 100;
}
.logo { display: flex; align-items: center; padding: 0 8px; margin-bottom: 32px; }
.sidebar-logo-img { height: 40px; width: auto; }
.nav-links { list-style: none; flex: 1; }
.nav-links li { margin-bottom: 4px; }
.nav-link {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 14px; border-radius: 12px;
    color: var(--text-secondary); text-decoration: none;
    font-size: 14px; font-weight: 500; transition: all 0.2s;
}
.nav-link:hover { background: var(--bg); color: var(--text); }
.nav-link.active { background: var(--bg-dark); color: #fff; }
.nav-icon { display: flex; align-items: center; }
.sidebar-user {
    margin-top: auto; padding: 16px 8px; border-top: 1px solid var(--border);
}
.user-info { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.user-details { flex: 1; min-width: 0; }
.user-details .user-name { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-details .user-access { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.btn-logout {
    width: 100%; padding: 8px; background: #fef2f2; border: 1px solid #fecaca;
    color: var(--red); border-radius: 10px; font-size: 12px; font-weight: 600;
    cursor: pointer; transition: all 0.2s;
}
.btn-logout:hover { background: #fee2e2; }

/* ============ BOTTOM NAV (MOBILE) ============ */
.bottom-nav {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--bg-white); border-top: 1px solid var(--border);
    padding: 8px 16px 20px; z-index: 100;
    justify-content: space-around; align-items: center;
}
.bottom-nav-item {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 12px;
    color: var(--text-muted); text-decoration: none; transition: all 0.2s;
}
.bottom-nav-item.active { color: var(--text); background: var(--bg); }
.bottom-nav-add {
    width: 52px; height: 52px; border-radius: 16px;
    background: var(--bg-dark); color: #fff; border: none;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; box-shadow: 0 4px 15px rgba(26,26,46,0.3);
    transition: transform 0.2s;
}
.bottom-nav-add:active { transform: scale(0.95); }

/* ============ CONTENT ============ */
.content {
    margin-left: 240px; padding: 28px 32px; flex: 1;
    max-width: 1200px;
}

/* ============ HERO CARD (DASHBOARD) ============ */
.hero-card {
    background: var(--bg-dark);
    border-radius: 20px; padding: 32px 28px;
    color: #fff; margin-bottom: 28px; position: relative;
    overflow: hidden;
}
.hero-card::before {
    content: ''; position: absolute; top: -60px; right: -40px;
    width: 200px; height: 200px; border-radius: 50%;
    background: rgba(255,255,255,0.04);
}
.hero-card::after {
    content: ''; position: absolute; bottom: -80px; left: 30%;
    width: 300px; height: 200px; border-radius: 50%;
    background: rgba(255,255,255,0.03);
}
.hero-greeting { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.hero-title { font-size: 24px; font-weight: 800; margin-bottom: 4px; position: relative; z-index: 1; }
.hero-date { font-size: 13px; color: rgba(255,255,255,0.5); position: relative; z-index: 1; }
.hero-clock { font-size: 28px; font-weight: 700; color: rgba(255,255,255,0.9); position: relative; z-index: 1; margin-top: 6px; font-variant-numeric: tabular-nums; letter-spacing: 1px; }
.field-hint { font-size: 12px; color: #888; margin: -4px 0 6px 0; }
.qa-icon { display: block; margin-bottom: 4px; color: var(--text-secondary); }

/* ============ VIEWS ============ */
.view { display: none; }
.view.active { display: block; }

/* ============ SECTION HEADERS ============ */
.section-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 14px; margin-top: 4px;
}
.section-header h3 { font-size: 18px; font-weight: 700; }
.view-all { font-size: 13px; color: var(--text-muted); cursor: pointer; font-weight: 500; }
.view-all:hover { color: var(--text); }

/* ============ VIEW HEADER ============ */
.view-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 24px;
}
.view-header h1 { font-size: 26px; font-weight: 800; }

/* ============ STATS GRID ============ */
.stats-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 14px; margin-bottom: 28px;
}
.stat-card {
    background: var(--bg-white); border-radius: var(--radius);
    padding: 20px; box-shadow: var(--shadow); border: 1px solid var(--border);
}
.stat-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); font-weight: 600; margin-bottom: 8px; }
.stat-value { font-size: 28px; font-weight: 800; }
.stat-value.purple { color: var(--accent); }
.stat-value.yellow { color: var(--yellow); }
.stat-value.blue { color: var(--blue); }
.stat-value.green { color: var(--green); }
.stat-value.orange { color: var(--orange); }

/* ============ SUMMARY BOARD ============ */
.dashboard-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 28px; }
.summary-board {
    background: var(--bg-white); border-radius: var(--radius);
    padding: 16px; box-shadow: var(--shadow); border: 1px solid var(--border);
}
.summary-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); }
.summary-item:last-child { border-bottom: none; }
.summary-item .label { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; }
.summary-item .count { font-size: 18px; font-weight: 700; }
.col-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }

/* ============ TASK LIST (Timeline style) ============ */
.task-list { position: relative; }
.task-item {
    display: flex; align-items: center; gap: 16px;
    padding: 16px; margin-bottom: 10px;
    background: var(--bg-white); border-radius: var(--radius);
    box-shadow: var(--shadow); border: 1px solid var(--border);
    cursor: pointer; transition: all 0.2s; position: relative;
}
.task-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-1px); }
.task-item::before {
    content: ''; width: 4px; height: 100%;
    position: absolute; left: 0; top: 0;
    border-radius: 16px 0 0 16px;
}
.task-item .task-info { flex: 1; }
.task-type {
    font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
    padding: 3px 8px; border-radius: 6px; margin-right: 10px;
}
.task-type.video { background: #ede9fe; color: #7c3aed; }
.task-type.project { background: #dbeafe; color: #2563eb; }
.task-time { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.assignees { display: flex; }
.assignees .avatar { margin-left: -6px; border: 2px solid var(--bg-white); }

/* ============ BUTTONS ============ */
.btn {
    padding: 10px 20px; border-radius: 12px; border: none;
    font-size: 14px; font-weight: 600; cursor: pointer;
    transition: all 0.2s; display: inline-flex; align-items: center; gap: 6px;
    font-family: inherit;
}
.btn-dark { background: var(--bg-dark); color: #fff; }
.btn-dark:hover { background: #2d2d4e; }
.btn-primary { background: var(--bg-dark); color: #fff; }
.btn-primary:hover { background: #2d2d4e; }
.btn-secondary { background: var(--bg); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { background: #e8e8ee; }
.btn-danger { background: #fef2f2; color: var(--red); border: 1px solid #fecaca; }
.btn-danger:hover { background: #fee2e2; }
.btn-sm { padding: 6px 14px; font-size: 12px; border-radius: 8px; }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--text); }

/* ============ FILTER BAR ============ */
.filter-bar { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.filter-chip {
    padding: 8px 18px; border-radius: 100px; border: 1.5px solid var(--border);
    background: var(--bg-white); font-size: 13px; font-weight: 500;
    color: var(--text-secondary); cursor: pointer; transition: all 0.2s;
    font-family: inherit;
}
.filter-chip:hover { border-color: var(--text-secondary); }
.filter-chip.active { background: var(--bg-dark); color: #fff; border-color: var(--bg-dark); }

/* ============ CARDS ============ */
.card {
    background: var(--bg-white); border-radius: var(--radius);
    padding: 18px; margin-bottom: 12px;
    box-shadow: var(--shadow); border: 1px solid var(--border);
    cursor: pointer; transition: all 0.2s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.card-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.card-desc { font-size: 13px; color: var(--text-secondary); margin-bottom: 12px; line-height: 1.5; }
.card-footer { display: flex; justify-content: space-between; align-items: center; }
.card-assignees { display: flex; }
.card-assignees .avatar { margin-left: -6px; border: 2px solid var(--bg-white); }
.card-priority { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 3px 10px; border-radius: 6px; }
.priority-low { background: #f0fdf4; color: var(--green); }
.priority-medium { background: #fefce8; color: #ca8a04; }
.priority-high { background: #fef2f2; color: var(--red); }
.card-date { font-size: 12px; color: var(--text-muted); }
.card-remark {
    display: flex; align-items: flex-start; gap: 6px;
    margin-top: 10px; padding: 8px 10px;
    background: var(--bg); border-radius: 8px;
    font-size: 12px; color: var(--text-secondary); line-height: 1.4;
}
.card-remark svg { flex-shrink: 0; margin-top: 1px; color: var(--text-muted); }

/* ============ REMARKS ============ */
.remarks-section {
    margin-top: 24px; padding-top: 20px;
    border-top: 1.5px solid var(--border);
}
.remarks-header {
    display: flex; align-items: center; gap: 8px;
    font-size: 15px; font-weight: 700; color: var(--text);
    margin-bottom: 14px;
}
.remark-add {
    display: flex; gap: 8px; margin-bottom: 16px; align-items: flex-start;
}
.remark-add textarea {
    flex: 1; padding: 10px 12px; border: 1.5px solid var(--border);
    border-radius: 10px; font-size: 13px; font-family: inherit;
    resize: none; min-height: 44px; color: var(--text); background: var(--bg);
    transition: border-color 0.2s;
}
.remark-add textarea:focus { outline: none; border-color: var(--bg-dark); }
.remark-add .btn { align-self: flex-end; white-space: nowrap; }
.remarks-list { display: flex; flex-direction: column; gap: 10px; }
.remarks-empty { font-size: 13px; color: var(--text-muted); text-align: center; padding: 12px 0; }
.remark-item {
    display: flex; gap: 10px; padding: 10px 12px;
    background: var(--bg); border-radius: 12px;
}
.remark-body { flex: 1; min-width: 0; }
.remark-meta {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; margin-bottom: 4px;
}
.remark-meta strong { font-weight: 600; color: var(--text); }
.remark-meta span { color: var(--text-muted); font-size: 11px; }
.remark-text { font-size: 13px; color: var(--text-secondary); line-height: 1.5; word-break: break-word; }

/* ============ PROGRESS BAR ============ */
.progress-bar { height: 5px; background: var(--bg); border-radius: 10px; margin-top: 12px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--accent); border-radius: 10px; transition: width 0.3s; }

/* ============ KANBAN ============ */
.kanban-board { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 16px; }
.kanban-column { min-width: 260px; flex: 1; }
.column-header {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 700; margin-bottom: 14px;
    padding: 0 4px; color: var(--text-secondary);
}
.empty-state { text-align: center; padding: 32px 16px; color: var(--text-muted); }
.empty-icon { font-size: 36px; margin-bottom: 10px; }
.empty-state p { font-size: 13px; }

/* ============ AVATAR ============ */
.avatar {
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%; color: #fff; font-weight: 700;
    flex-shrink: 0;
}

/* ============ SHOOT LIST ============ */
.shoot-card {
    background: var(--bg-white); border-radius: var(--radius);
    padding: 20px; margin-bottom: 12px;
    box-shadow: var(--shadow); border: 1px solid var(--border);
    cursor: pointer; transition: all 0.2s;
}
.shoot-card:hover { box-shadow: var(--shadow-lg); }
.shoot-card.completed { opacity: 0.6; }
.shoot-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.shoot-title { font-size: 16px; font-weight: 700; }
.shoot-date-badge {
    font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 8px;
    background: var(--bg); color: var(--text-secondary);
}
.shoot-date-badge.today { background: var(--bg-dark); color: #fff; }
.shoot-date-badge.past { background: #fef2f2; color: var(--red); }
.shoot-details { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.shoot-detail-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); font-weight: 600; margin-bottom: 4px; }
.shoot-detail-value { font-size: 13px; font-weight: 500; }
.shoot-reference { background: var(--bg); border-radius: 10px; padding: 12px; margin-bottom: 14px; }
.shoot-footer { display: flex; justify-content: space-between; align-items: center; }
.shoot-crew { display: flex; align-items: center; gap: 8px; }
.shoot-crew-label { font-size: 12px; color: var(--text-muted); font-weight: 600; }
.shoot-crew-avatars { display: flex; }
.shoot-crew-avatars .avatar { margin-left: -6px; border: 2px solid var(--bg-white); }
.shoot-status-badge {
    font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
    padding: 4px 12px; border-radius: 8px;
}
.shoot-status-scheduled { background: var(--bg); color: var(--text-secondary); }
.shoot-status-confirmed { background: #dbeafe; color: #2563eb; }
.shoot-status-completed { background: #f0fdf4; color: #16a34a; }
.shoot-status-cancelled { background: #fef2f2; color: var(--red); }

/* ============ REQUIREMENTS ============ */
.req-card {
    background: var(--bg-white); border-radius: var(--radius);
    padding: 20px; margin-bottom: 12px;
    box-shadow: var(--shadow); border: 1px solid var(--border);
    cursor: pointer; transition: all 0.2s;
}
.req-card:hover { box-shadow: var(--shadow-lg); }
.req-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.req-item-name { font-size: 16px; font-weight: 700; }
.req-category { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 3px 10px; border-radius: 6px; background: var(--bg); color: var(--text-secondary); }
.req-price { font-size: 18px; font-weight: 800; color: var(--accent); margin-bottom: 12px; }
.req-details { margin-bottom: 12px; }
.req-detail-row { display: flex; gap: 8px; margin-bottom: 6px; }
.req-label { font-size: 12px; color: var(--text-muted); font-weight: 600; min-width: 60px; }
.req-val { font-size: 13px; font-weight: 500; }
.req-val a { color: var(--blue); text-decoration: none; }
.req-val a:hover { text-decoration: underline; }
.req-urgency { font-size: 11px; font-weight: 700; padding: 6px 12px; border-radius: 8px; margin-bottom: 12px; }
.req-urgency.urgent { background: #fef2f2; color: var(--red); }
.req-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid var(--border); }
.req-requested-by { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; }
.req-status-badge { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 4px 12px; border-radius: 8px; }
.req-status-pending { background: #fefce8; color: #ca8a04; }
.req-status-approved { background: #f0fdf4; color: #16a34a; }
.req-status-purchased { background: #dbeafe; color: #2563eb; }
.req-status-rejected { background: #fef2f2; color: var(--red); }

/* ============ APPROVAL ============ */
.approval-section { margin-top: 12px; padding: 10px 14px; background: var(--bg); border-radius: 10px; }
.approval-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 6px; }
.approval-info { display: flex; align-items: center; gap: 8px; }
.approved-text { font-size: 12px; color: #16a34a; font-weight: 600; }
.rejected-text { font-size: 12px; color: var(--red); font-weight: 600; }
.rejection-reason { font-size: 12px; color: var(--orange); margin-top: 4px; padding: 6px 10px; background: #fff7ed; border-radius: 6px; }
.approval-actions { display: flex; gap: 8px; margin-top: 10px; }
.btn-approve { padding: 8px 20px; background: #f0fdf4; border: 1px solid #bbf7d0; color: #16a34a; border-radius: 10px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.btn-approve:hover { background: #dcfce7; }
.btn-reject { padding: 8px 20px; background: #fef2f2; border: 1px solid #fecaca; color: var(--red); border-radius: 10px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.btn-reject:hover { background: #fee2e2; }

/* ============ TEAM GRID ============ */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.member-card {
    background: var(--bg-white); border-radius: var(--radius);
    padding: 24px; text-align: center;
    box-shadow: var(--shadow); border: 1px solid var(--border);
    transition: all 0.2s;
}
.member-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.member-avatar {
    width: 64px; height: 64px; border-radius: 20px;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-size: 22px; font-weight: 800; margin-bottom: 12px;
}
.member-name { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.member-role { font-size: 12px; color: var(--text-secondary); margin-bottom: 8px; }
.member-dept {
    display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.5px; padding: 3px 10px; border-radius: 6px; margin-bottom: 12px;
}
.dept-tech { background: #dbeafe; color: #2563eb; }
.dept-editing { background: #fef3c7; color: #d97706; }
.dept-content { background: #fce7f3; color: #db2777; }
.member-stats { display: flex; justify-content: center; gap: 24px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.member-stat .val { font-size: 18px; font-weight: 800; }
.member-stat .lbl { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.member-actions { display: flex; gap: 6px; margin-top: 14px; justify-content: center; flex-wrap: wrap; }
.access-badge {
    display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; padding: 3px 10px; border-radius: 8px; margin-bottom: 6px;
}
.access-management { background: #ede9fe; color: #7c3aed; }
.access-manager { background: #dbeafe; color: #2563eb; }
.access-member { background: var(--bg); color: var(--text-muted); }
.designation-tag { font-size: 11px; color: var(--text-secondary); margin-bottom: 4px; }

/* ============ GRAPHICS ============ */
.graphics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.graphic-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all 0.2s;
    cursor: pointer;
}

.graphic-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.graphic-card-header {
    padding: 18px 20px 14px;
}

.graphic-card-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.graphic-card-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 10px;
}

.graphic-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.graphic-type-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 6px;
}

.gtype-thumbnail { background: #ede9fe; color: #7c3aed; }
.gtype-banner { background: #dbeafe; color: #2563eb; }
.gtype-social { background: #fce7f3; color: #db2777; }
.gtype-logo { background: #fef3c7; color: #d97706; }
.gtype-poster { background: #d1fae5; color: #059669; }
.gtype-other { background: var(--bg); color: var(--text-secondary); }

.graphic-status-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 6px;
}

.gstatus-in-progress { background: #dbeafe; color: #2563eb; }
.gstatus-review { background: #fefce8; color: #ca8a04; }
.gstatus-approved { background: #d1fae5; color: #059669; }
.gstatus-completed { background: var(--bg); color: var(--text-secondary); }

/* Reference Images Gallery */
.graphic-refs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 4px;
    padding: 0 4px 4px;
}

.graphic-ref-thumb {
    aspect-ratio: 1;
    border-radius: 6px;
    overflow: hidden;
    background: var(--bg);
}

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

.graphic-ref-more {
    aspect-ratio: 1;
    border-radius: 6px;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
}

.graphic-card-footer {
    padding: 12px 20px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.graphic-assignees {
    display: flex;
}

.graphic-assignees .avatar {
    margin-left: -6px;
    border: 2px solid var(--bg-white);
}

.graphic-date {
    font-size: 12px;
    color: var(--text-muted);
}

/* Reference Upload Area */
.ref-upload-area {
    border: 2px dashed var(--border);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 10px;
}

.ref-upload-area:hover {
    border-color: var(--text-secondary);
    background: var(--bg);
}

.ref-upload-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.ref-upload-text {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.ref-upload-hint {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

.ref-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.ref-preview-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg);
}

.ref-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ref-preview-remove {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Detail modal ref gallery */
.detail-ref-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
    margin-top: 8px;
}

.detail-ref-item {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg);
    transition: transform 0.2s;
}

.detail-ref-item:hover {
    transform: scale(1.03);
}

.detail-ref-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Image lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* ============ PROFILE ============ */
.profile-page { max-width: 600px; }
.profile-header {
    background: var(--bg-dark); border-radius: 20px;
    padding: 32px; color: #fff; text-align: center; margin-bottom: 24px;
    position: relative; overflow: hidden;
}
.profile-header::before {
    content: ''; position: absolute; top: -40px; right: -20px;
    width: 150px; height: 150px; border-radius: 50%;
    background: rgba(255,255,255,0.04);
}
.profile-avatar-lg {
    width: 80px; height: 80px; border-radius: 24px;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-size: 28px; font-weight: 800; margin-bottom: 12px;
    border: 3px solid rgba(255,255,255,0.2); overflow: hidden;
}
.profile-avatar-img img { width: 100%; height: 100%; object-fit: cover; }

/* Avatar upload */
.avatar-upload-area { display: flex; align-items: center; gap: 16px; }
.avatar-preview {
    width: 72px; height: 72px; border-radius: 20px; overflow: hidden;
    flex-shrink: 0; border: 2px solid var(--border);
}
.avatar-preview img { width: 100%; height: 100%; object-fit: cover; }
.avatar-placeholder {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 24px; font-weight: 800;
}
.avatar-upload-actions { display: flex; flex-direction: column; gap: 6px; }
.profile-name { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.profile-role { font-size: 13px; color: rgba(255,255,255,0.6); }
.profile-section {
    background: var(--bg-white); border-radius: var(--radius);
    padding: 24px; margin-bottom: 16px;
    box-shadow: var(--shadow); border: 1px solid var(--border);
}
.profile-section-title {
    font-size: 14px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; color: var(--text-muted); margin-bottom: 16px;
}
.profile-field { margin-bottom: 16px; }
.profile-field:last-child { margin-bottom: 0; }
.profile-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 4px; }
.profile-value { font-size: 15px; font-weight: 500; }
.profile-bio { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.profile-actions { display: flex; gap: 10px; margin-top: 20px; }

/* ============ DESIGNATION MODAL ============ */
.desig-list { margin-bottom: 16px; }
.desig-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 14px; border-radius: 10px; background: var(--bg); margin-bottom: 6px;
}
.desig-remove {
    background: none; border: none; font-size: 18px; cursor: pointer;
    color: var(--red); padding: 0 4px;
}
.desig-add-row { display: flex; gap: 8px; }
.desig-add-row input { flex: 1; }

/* ============ MODAL ============ */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4); backdrop-filter: blur(6px);
    display: none; align-items: center; justify-content: center; z-index: 1000;
}
.modal-overlay.active { display: flex; }
.modal {
    background: var(--bg-white); border-radius: 20px;
    width: 90%; max-width: 520px; max-height: 85vh;
    overflow-y: auto; box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}
.modal-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 24px 0; position: sticky; top: 0;
    background: var(--bg-white); border-radius: 20px 20px 0 0; z-index: 1;
}
.modal-header h2 { font-size: 20px; font-weight: 800; }
.modal-close {
    width: 36px; height: 36px; border-radius: 10px;
    border: none; background: var(--bg); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-secondary); transition: all 0.2s;
}
.modal-close:hover { background: #e8e8ee; }
.modal-body { padding: 20px 24px 24px; }

/* ============ FORMS ============ */
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block; font-size: 12px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.5px; color: var(--text-secondary); margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
    border-radius: 12px; font-size: 14px; color: var(--text);
    background: var(--bg); transition: border-color 0.2s; font-family: inherit;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--bg-dark);
}
.form-group textarea { min-height: 80px; resize: vertical; }
.checkbox-group { display: flex; flex-wrap: wrap; gap: 8px; }
.checkbox-label {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 500; padding: 6px 12px;
    background: var(--bg); border-radius: 8px; cursor: pointer;
}
.checkbox-label input { accent-color: var(--bg-dark); }
.form-actions { display: flex; gap: 10px; justify-content: flex-end; padding-top: 8px; }
.detail-value { font-size: 14px; color: var(--text); padding: 10px 14px; background: var(--bg); border-radius: var(--radius-sm); line-height: 1.5; }
.detail-value a { color: var(--accent); word-break: break-all; }

/* ============ FEED ============ */
.feed-compose-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}
.feed-compose-header {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.feed-compose-header textarea {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    font-family: inherit;
    resize: none;
    min-height: 40px;
    line-height: 1.5;
    color: var(--text);
    background: transparent;
}
.feed-compose-header textarea::placeholder {
    color: var(--text-muted);
}
.feed-media-preview {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 8px 0;
}
.feed-media-thumb {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid var(--border);
}
.feed-media-thumb img,
.feed-media-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.feed-media-video { position: relative; }
.feed-video-badge {
    position: absolute;
    bottom: 4px;
    left: 4px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
}
.feed-media-voice {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-secondary);
}
.feed-compose-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    margin-top: 8px;
}
.feed-attach-btns { display: flex; gap: 4px; }
.feed-attach-btn {
    width: 38px;
    height: 38px;
    border: none;
    background: var(--bg);
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.15s;
}
.feed-attach-btn:hover {
    background: var(--border);
    color: var(--text);
}
.feed-attach-btn.recording {
    background: var(--red);
    color: #fff;
    animation: pulse-rec 1s infinite;
}
@keyframes pulse-rec {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.feed-list { display: flex; flex-direction: column; gap: 16px; }
.feed-post {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}
.feed-post-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.feed-post-author { flex: 1; }
.feed-author-name { font-weight: 600; font-size: 14px; color: var(--text); }
.feed-post-time { font-size: 12px; color: var(--text-muted); }
.feed-post-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 12px;
    white-space: pre-wrap;
    word-break: break-word;
}
.feed-mention { color: var(--accent); font-weight: 600; cursor: pointer; }
.feed-post-media-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.feed-post-media { border-radius: var(--radius-sm); overflow: hidden; max-width: 100%; }
.feed-post-media img {
    max-width: 100%;
    max-height: 400px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: transform 0.15s;
    object-fit: cover;
}
.feed-post-media img:hover { transform: scale(1.01); }
.feed-post-media video { max-width: 100%; max-height: 400px; border-radius: var(--radius-sm); }
.feed-post-voice {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    color: var(--text-secondary);
}
.feed-post-voice audio { flex: 1; height: 36px; }

.feed-post-actions {
    display: flex;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}
.feed-action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: none;
    background: var(--bg);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.15s;
}
.feed-action-btn:hover { background: var(--border); color: var(--text); }
.feed-action-btn.liked { background: rgba(233,57,70,0.1); color: var(--red); }
.feed-action-btn.liked svg { fill: var(--red); stroke: var(--red); }

.feed-replies { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.feed-reply-input { display: flex; gap: 10px; align-items: center; margin-bottom: 14px; }
.feed-reply-input input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-family: inherit;
    outline: none;
    background: var(--bg);
    transition: border 0.15s;
}
.feed-reply-input input:focus { border-color: var(--accent); }
.feed-reply { display: flex; gap: 10px; padding: 10px 0; align-items: flex-start; }
.feed-reply + .feed-reply { border-top: 1px solid var(--bg); }
.feed-reply-body { flex: 1; font-size: 13px; line-height: 1.5; color: var(--text); }
.feed-reply-body strong { font-weight: 600; }
.feed-reply-time { color: var(--text-muted); font-size: 11px; margin-left: 6px; }
.feed-no-replies { text-align: center; color: var(--text-muted); font-size: 13px; padding: 8px 0; }

.feed-birthday-post {
    background: linear-gradient(135deg, #fff7e6 0%, #fff0f0 50%, #f0f0ff 100%);
    border: 2px solid #ffd89b;
    position: relative;
    overflow: hidden;
}
.feed-birthday-banner { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.feed-birthday-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #ffc857, #e07a5f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feed-birthday-text { flex: 1; }
.feed-birthday-title { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.feed-birthday-sub { font-size: 14px; color: var(--text-secondary); line-height: 1.4; }
.feed-birthday-avatar { display: flex; justify-content: center; margin-bottom: 16px; }

/* ============ IDEAS ============ */
.ideas-list { display: flex; flex-direction: column; gap: 12px; }
.idea-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 18px 20px;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all 0.15s;
    border-left: 4px solid transparent;
}
.idea-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-1px); }
.idea-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.idea-card-meta { display: flex; align-items: center; gap: 10px; }
.idea-card-author { font-weight: 600; font-size: 13px; }
.idea-card-time { font-size: 11px; color: var(--text-muted); }
.idea-status {
    font-size: 11px; font-weight: 600; color: #fff;
    padding: 3px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px;
}
.idea-card-title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.idea-card-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.5; margin-bottom: 10px; }
.idea-card-footer { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.idea-category {
    font-size: 11px; font-weight: 600; color: var(--accent);
    background: rgba(108,92,231,0.08); padding: 4px 10px; border-radius: 6px;
}
.idea-remarks-count { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--text-muted); }
.idea-converted-badge {
    font-size: 11px; font-weight: 600; color: var(--green);
    background: rgba(129,178,154,0.1); padding: 4px 10px; border-radius: 6px;
}
.idea-admin-actions { display: flex; gap: 10px; margin: 16px 0; }
.idea-convert-section {
    border: 1.5px solid var(--border); border-radius: 14px;
    padding: 16px; margin: 16px 0; background: var(--bg);
}

.lightbox-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9); z-index: 5000;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.lightbox-overlay img { max-width: 90%; max-height: 90%; border-radius: 8px; object-fit: contain; }

/* ============ MOBILE MENU ============ */
.mobile-menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); z-index: 200;
    display: none; align-items: flex-end;
    opacity: 0; transition: opacity 0.25s;
}
.mobile-menu-overlay.open { display: flex; opacity: 1; }
.mobile-menu {
    width: 100%;
    background: var(--bg-white);
    border-radius: 24px 24px 0 0;
    padding: 8px 0 20px;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}
.mobile-menu-overlay.open .mobile-menu { transform: translateY(0); }
.mobile-menu-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px 12px;
    border-bottom: 1px solid var(--border);
}
.mobile-menu-header h3 { font-size: 18px; font-weight: 700; }
.mobile-menu-close {
    width: 36px; height: 36px; border: none; background: var(--bg);
    border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-secondary);
}
.mobile-menu-user {
    display: flex; align-items: center; gap: 12px;
    padding: 16px 20px; border-bottom: 1px solid var(--border);
    cursor: pointer;
}
.mobile-menu-user-info { flex: 1; }
.mobile-menu-user-name { font-weight: 600; font-size: 15px; }
.mobile-menu-user-role { font-size: 12px; color: var(--text-muted); }
.mobile-menu-links { padding: 8px 12px; }
.mobile-menu-link {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 12px; border-radius: var(--radius-sm);
    color: var(--text); text-decoration: none;
    font-size: 15px; font-weight: 500;
    cursor: pointer; border: none; background: none; width: 100%; text-align: left;
    transition: background 0.15s;
}
.mobile-menu-link:hover, .mobile-menu-link:active { background: var(--bg); }
.mobile-menu-link svg { color: var(--text-secondary); flex-shrink: 0; }
.mobile-menu-link.active { background: var(--bg); color: var(--accent); }
.mobile-menu-link.active svg { color: var(--accent); }
.mobile-menu-footer {
    padding: 8px 20px; margin-top: 4px;
    border-top: 1px solid var(--border);
}
.mobile-menu-logout {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 12px; border: none; background: none;
    color: var(--red); font-size: 15px; font-weight: 500;
    cursor: pointer; width: 100%; border-radius: var(--radius-sm);
}
.mobile-menu-logout:active { background: rgba(230,57,70,0.08); }

/* ============ RESPONSIVE - TABLET ============ */
@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .dashboard-columns { grid-template-columns: 1fr; }
    .kanban-column { min-width: 220px; }
}

/* ============ RESPONSIVE - MOBILE ============ */
@media (max-width: 768px) {
    .sidebar { display: none; }
    .bottom-nav { display: flex; }
    .content { margin-left: 0; padding: 20px 16px 90px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .stat-card { padding: 16px; }
    .stat-value { font-size: 22px; }
    .view-header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .view-header h1 { font-size: 22px; }
    .kanban-board { flex-direction: column; }
    .kanban-column { min-width: unset; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .modal { width: 95%; border-radius: 20px; }
    .shoot-details { grid-template-columns: 1fr; }
    .hero-card { padding: 24px 20px; }
    .hero-title { font-size: 20px; }
    .dashboard-columns { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .shoot-top { flex-direction: column; gap: 8px; }
    .form-actions { flex-direction: column; }
    .form-actions .btn { width: 100%; justify-content: center; }
    .filter-bar { gap: 6px; }
    .filter-chip { padding: 6px 14px; font-size: 12px; }
    .modal { max-height: 90vh; }
}
