@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #1a2332;
    --primary-light: #2a3a4e;
    --primary-dark: #0f1620;
    --gold: #c9a13b;
    --gold-light: #e0b94a;
    --gold-dark: #a8832a;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --secondary: #6c757d;
    --light: #f8f9fa;
    --dark: #343a40;
    --white: #ffffff;
    --gray-100: #f4f6f9;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --shadow: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-lg: 0 5px 25px rgba(0,0,0,0.12);
    --radius: 10px;
    --radius-sm: 6px;
    --font: 'Cairo', sans-serif;
    --sidebar-width: 260px;
    --header-height: 70px;
}

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

body {
    font-family: var(--font);
    background: var(--gray-100);
    color: var(--dark);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    line-height: 1.6;
}

a { text-decoration: none; color: var(--primary); }
a:hover { color: var(--gold); }
ul { list-style: none; }

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    z-index: 1000;
    transition: all 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 15px rgba(0,0,0,0.15);
}

.sidebar-toggle {
    display: none;
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.sidebar-brand {
    padding: 25px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sidebar-brand .brand-icon {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 8px;
    display: block;
}

.sidebar-brand h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.4;
}

.sidebar-brand small {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
}

.sidebar-menu {
    padding: 10px 0;
}

.sidebar-menu .menu-label {
    padding: 15px 20px 5px;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-menu .nav-item {
    display: flex;
    align-items: center;
    padding: 11px 20px;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
    border-right: 3px solid transparent;
    font-size: 0.85rem;
    font-weight: 500;
}

.sidebar-menu .nav-item:hover,
.sidebar-menu .nav-item.active {
    background: rgba(255,255,255,0.06);
    color: var(--white);
    border-right-color: var(--gold);
}

.sidebar-menu .nav-item i {
    margin-left: 12px;
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content {
    margin-right: var(--sidebar-width);
    min-height: 100vh;
    transition: all 0.3s ease;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background: var(--white);
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 999;
    height: var(--header-height);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--primary);
    cursor: pointer;
    padding: 5px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.hamburger:hover {
    background: var(--gray-100);
}

.header .page-title h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    line-height: 1.3;
}

.header .page-title small {
    font-size: 0.8rem;
    color: var(--gray-600);
    display: block;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-left .user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    transition: background 0.3s;
}

.header-left .user-info:hover {
    background: var(--gray-100);
}

.header-left .user-info .avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.header-left .user-info .user-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark);
    white-space: nowrap;
}

.header-left .user-info .user-role {
    font-size: 0.7rem;
    color: var(--gray-600);
}

/* ============================================
   CONTENT WRAPPER
   ============================================ */
.content-wrapper {
    padding: 25px 30px;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: none;
    margin-bottom: 25px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

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

.card-header {
    padding: 16px 22px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.card-header h5 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
    margin: 0;
}

.card-header .card-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.card-body {
    padding: 22px;
}

/* ============================================
   STAT CARDS
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.stat-card {
    padding: 20px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 18px;
}

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

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

.stat-card .stat-icon.blue { background: rgba(26,35,50,0.1); color: var(--primary); }
.stat-card .stat-icon.gold { background: rgba(201,161,59,0.15); color: var(--gold); }
.stat-card .stat-icon.green { background: rgba(40,167,69,0.12); color: var(--success); }
.stat-card .stat-icon.red { background: rgba(220,53,69,0.1); color: var(--danger); }
.stat-card .stat-icon.purple { background: rgba(111,66,193,0.1); color: #6f42c1; }
.stat-card .stat-icon.cyan { background: rgba(23,162,184,0.12); color: var(--info); }

.stat-card .stat-info h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
    line-height: 1.2;
}

.stat-card .stat-info p {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin: 2px 0 0;
}

.stat-card .stat-info small {
    font-size: 0.7rem;
    color: var(--gray-500);
}

/* ============================================
   TABLES
   ============================================ */
.table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

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

.table thead th {
    background: var(--gray-100);
    padding: 11px 14px;
    font-weight: 700;
    color: var(--primary);
    border-bottom: 2px solid var(--gray-300);
    font-size: 0.8rem;
    white-space: nowrap;
}

.table tbody td {
    padding: 11px 14px;
    border-bottom: 1px solid var(--gray-200);
    vertical-align: middle;
}

.table tbody tr:hover {
    background: rgba(26,35,50,0.02);
}

.table .actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    font-family: var(--font);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-light); color: var(--white); transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-1px); }
.btn-success { background: var(--success); color: var(--white); }
.btn-success:hover { background: #218838; color: var(--white); }
.btn-danger { background: var(--danger); color: var(--white); }
.btn-danger:hover { background: #c82333; color: var(--white); }
.btn-info { background: var(--info); color: var(--white); }
.btn-info:hover { background: #138496; color: var(--white); }
.btn-warning { background: var(--warning); color: var(--dark); }
.btn-warning:hover { background: #e0a800; color: var(--dark); }
.btn-secondary { background: var(--gray-500); color: var(--white); }
.btn-secondary:hover { background: var(--gray-600); color: var(--white); }

.btn-sm { padding: 5px 10px; font-size: 0.75rem; }
.btn-lg { padding: 10px 24px; font-size: 0.95rem; }

/* ============================================
   FORMS
   ============================================ */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.form-control {
    width: 100%;
    padding: 9px 14px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-family: var(--font);
    transition: border-color 0.3s ease, box-shadow 0.3s;
    background: var(--white);
    color: var(--dark);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,161,59,0.15);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c757d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 12px center;
    padding-left: 32px;
}

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

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 15px;
}

/* ============================================
   SEARCH
   ============================================ */
.search-box {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.search-box .form-control {
    width: 260px;
}

.search-box select.form-control {
    width: 160px;
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 18px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-danger { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-warning { background: #fff3cd; color: #856404; border: 1px solid #ffeeba; }
.alert-info { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }

/* ============================================
   BADGES
   ============================================ */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
}

.badge-success { background: #d4edda; color: #155724; }
.badge-danger { background: #f8d7da; color: #721c24; }
.badge-warning { background: #fff3cd; color: #856404; }
.badge-info { background: #d1ecf1; color: #0c5460; }
.badge-primary { background: #cce5ff; color: #004085; }
.badge-secondary { background: #e2e3e5; color: #383d41; }
.badge-gold { background: #fef3d5; color: #856404; }

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.pagination a {
    padding: 7px 13px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    color: var(--primary);
    font-weight: 500;
    font-size: 0.82rem;
    transition: all 0.3s ease;
}

.pagination a:hover,
.pagination a.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.pagination span {
    padding: 7px 10px;
    color: var(--gray-500);
}

/* ============================================
   LOGIN PAGE
   ============================================ */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.login-page::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201,161,59,0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

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

.login-container {
    position: relative;
    z-index: 1;
    width: 420px;
    max-width: 100%;
}

.login-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 35px 35px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.login-card .login-logo {
    text-align: center;
    margin-bottom: 30px;
}

.login-card .login-logo .logo-icon {
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.login-card .login-logo h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
}

.login-card .login-logo p {
    color: var(--gray-600);
    font-size: 0.85rem;
    margin-top: 5px;
}

.login-card .btn-login {
    width: 100%;
    padding: 13px;
    font-size: 1rem;
    font-weight: 700;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font);
}

.login-card .btn-login:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201,161,59,0.3);
}

.login-footer {
    text-align: center;
    margin-top: 20px;
    color: rgba(255,255,255,0.7);
    font-size: 0.78rem;
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: 12px;
    width: 600px;
    max-width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from { transform: scale(0.92) translateY(15px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-header {
    padding: 18px 22px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.modal-header h4 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
    margin: 0;
}

.modal-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--gray-100);
    color: var(--gray-600);
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

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

.modal-body {
    padding: 22px;
}

.modal-footer {
    padding: 14px 22px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}

/* ============================================
   EMPTY STATE
   ============================================ */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--gray-500);
}

.empty-state i {
    font-size: 3.5rem;
    margin-bottom: 12px;
    color: var(--gray-400);
}

.empty-state h4 {
    color: var(--gray-600);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

/* ============================================
   LOADING
   ============================================ */
.loading {
    text-align: center;
    padding: 35px;
}

.spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--gray-300);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
}

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

/* ============================================
   CHARTS CONTAINER
   ============================================ */
.charts-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

/* ============================================
   TWO-COLUMN LAYOUT
   ============================================ */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

/* ============================================
   PRINT
   ============================================ */
@media print {
    .no-print { display: none !important; }
    .sidebar, .header { display: none !important; }
    .main-content { margin: 0 !important; }
    .card { box-shadow: none; border: 1px solid #ddd; }
    body { background: white; }
}

/* ============================================
   RESPONSIVE - TABLET & MOBILE
   ============================================ */
@media (max-width: 1024px) {
    .charts-grid {
        grid-template-columns: 1fr;
    }
    .two-col-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .sidebar {
        right: calc(-1 * var(--sidebar-width));
        z-index: 2001;
    }
    .sidebar.active {
        right: 0;
        box-shadow: 0 0 0 100vw rgba(0,0,0,0.4);
    }
    .sidebar-toggle {
        display: flex;
    }
    .main-content {
        margin-right: 0;
    }
    .hamburger {
        display: flex;
    }
    .header {
        padding: 0 15px;
        height: 60px;
    }
    .header .page-title h2 {
        font-size: 1rem;
    }
    .header .page-title small {
        font-size: 0.7rem;
    }
    .header-left .user-info .user-name {
        display: none;
    }
    .header-left .user-info .user-role {
        display: none;
    }
    .content-wrapper {
        padding: 15px;
    }
    .stats-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 12px;
    }
    .stat-card {
        padding: 14px;
        gap: 12px;
    }
    .stat-card .stat-icon {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }
    .stat-card .stat-info h3 {
        font-size: 1.3rem;
    }
    .stat-card .stat-info p {
        font-size: 0.72rem;
    }
    .search-box {
        flex-direction: column;
        width: 100%;
    }
    .search-box .form-control,
    .search-box select.form-control {
        width: 100%;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .card-header {
        padding: 14px 16px;
    }
    .card-body {
        padding: 16px;
    }
    .table {
        font-size: 0.78rem;
    }
    .table thead th,
    .table tbody td {
        padding: 8px 10px;
    }
    .btn {
        font-size: 0.78rem;
        padding: 7px 12px;
    }
    .btn-sm {
        padding: 4px 8px;
        font-size: 0.7rem;
    }
    .modal-content {
        max-width: 100%;
        margin: 10px;
        border-radius: 10px;
    }
    .login-card {
        padding: 30px 25px 25px;
    }
    .login-card .login-logo h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .stat-card {
        padding: 12px;
        gap: 10px;
    }
    .stat-card .stat-icon {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    .stat-card .stat-info h3 {
        font-size: 1.1rem;
    }
    .stat-card .stat-info p {
        font-size: 0.65rem;
    }
    .header-left .user-info {
        padding: 3px 6px;
    }
    .header-left .user-info .avatar {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    .content-wrapper {
        padding: 10px;
    }
    .modal-body {
        padding: 16px;
    }
    .form-row {
        gap: 10px;
    }
}

/* ============================================
   SIDEBAR OVERLAY ON MOBILE
   ============================================ */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 2000;
}

.sidebar-overlay.active {
    display: block;
}

/* ============================================
   FILE UPLOAD
   ============================================ */
.file-upload-area {
    width: 100%;
}

.file-upload-dropzone {
    border: 2px dashed var(--gray-400);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--gray-100);
}

.file-upload-dropzone:hover {
    border-color: var(--gold);
    background: rgba(201,161,59,0.05);
}

.file-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 12px;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    animation: slideDown 0.2s ease;
}

.file-item i {
    color: var(--gold);
    font-size: 1.1rem;
}

.file-item .file-name {
    flex: 1;
    color: var(--dark);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-item .file-size {
    color: var(--gray-500);
    font-size: 0.75rem;
    white-space: nowrap;
}

.file-item .file-remove {
    background: none;
    border: none;
    color: var(--danger);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0 4px;
    line-height: 1;
}

.file-item .file-remove:hover {
    color: #c82333;
}

/* ============================================
   UTILITIES
   ============================================ */
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-10 { gap: 10px; }
.gap-15 { gap: 15px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.text-center { text-align: center; }
.text-muted { color: var(--gray-600); }
.font-bold { font-weight: 700; }
.w-100 { width: 100%; }
