/* ============================================================
   SISTEM INFORMASI KEPARTAIAN - Main Stylesheet
   Premium Admin UI with Dark Sidebar
   ============================================================ */

:root {
    /* Primary Palette (Modern Emerald) */
    --primary: #10b981;
    --primary-dark: #059669;
    --primary-light: #34d399;
    --primary-bg: rgba(16, 185, 129, 0.1);
    
    /* Vibrant Palettes for Icons */
    --blue: #3b82f6; 
    --purple: #8b5cf6;
    --pink: #ec4899;
    --orange: #f97316;
    --yellow: #eab308;
    --teal: #14b8a6;
    --slate: #64748b;
    --slate-light: #f1f5f9;
    
    /* Accent Colors */
    --accent-success: #10b981;
    --accent-warning: #f59e0b;
    --accent-danger: #ef4444;
    --accent-info: #06b6d4;
    
    /* Neutrals - Light Mode Foundation */
    --bg-body: #f8fafc;
    --bg-card: #ffffff;
    --bg-sidebar: #ffffff;
    --bg-sidebar-hover: #f1f5f9;
    --bg-topbar: #ffffff;
    
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --text-sidebar: #64748b;
    --text-sidebar-active: #0f172a;
    
    --border-color: #e2e8f0;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
    
    /* Sidebar */
    --sidebar-width: 280px;
    --sidebar-collapsed: 0px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.1);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: var(--text-primary);
    background: var(--bg-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

.admin-sidebar {
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--bg-sidebar);
    border-right: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    transition: var(--transition);
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) transparent;
}

.admin-sidebar::-webkit-scrollbar {
    width: 4px;
}
.admin-sidebar::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

.admin-main {
    flex: 1;
    margin-left: var(--sidebar-width);
    transition: var(--transition);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Sidebar collapsed */
.sidebar-collapsed .admin-sidebar {
    transform: translateX(-100%);
}
.sidebar-collapsed .admin-main {
    margin-left: 0;
}

/* ============================================================
   SIDEBAR STYLES
   ============================================================ */
.sidebar-header {
    padding: 24px 24px 12px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary), var(--blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.25);
}

.brand-text h5 {
    color: var(--text-primary);
    font-size: 17px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
}
.brand-text small {
    color: var(--text-sidebar);
    font-size: 11px;
}

.sidebar-user {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
}

.user-avatar {
    font-size: 32px;
    color: var(--primary-light);
}

.user-info {
    display: flex;
    flex-direction: column;
}
.user-name {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 700;
}
.user-role {
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 500;
}

/* Sidebar Navigation */
.sidebar-nav {
    padding: 12px 0 40px 0;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-header {
    padding: 24px 24px 8px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
}

.nav-item a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 24px;
    color: var(--text-sidebar);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
    border-radius: 12px;
    margin: 4px 12px;
    position: relative;
}

.nav-item a:hover {
    background: var(--bg-sidebar-hover);
    color: var(--primary);
}

.nav-item.active a {
    background: var(--primary-bg);
    color: var(--primary);
}

.nav-item.active a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    background: var(--primary);
    border-radius: 0 4px 4px 0;
}

.nav-item a i {
    width: 20px;
    text-align: center;
    font-size: 14px;
}

.nav-badge {
    background: var(--accent-danger);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px;
    margin-left: auto;
}

/* ============================================================
   VIBRANT ICON UTILITIES
   ============================================================ */
.icon-box { 
    width: 64px; height: 64px; 
    border-radius: 18px; 
    display: flex; align-items: center; justify-content: center; 
    font-size: 28px; margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.icon-users { background: #eff6ff; color: var(--blue); }
.icon-tie { background: #fdf4ff; color: var(--purple); }
.icon-vote { background: #ecfdf5; color: var(--primary); }
.icon-card { background: #fff7ed; color: var(--orange); }
.icon-globe { background: #f0fdfa; color: var(--teal); }
.icon-chart { background: #fef2f2; color: #ef4444; }
.icon-home { background: #fefce8; color: var(--yellow); }
.icon-shield { background: #f8fafc; color: #64748b; }

.text-gradient-primary { background: linear-gradient(135deg, var(--primary), var(--blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.text-gradient-purple { background: linear-gradient(135deg, var(--purple), var(--pink)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.text-gradient-orange { background: linear-gradient(135deg, var(--orange), var(--yellow)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }


/* ============================================================
   TOPBAR
   ============================================================ */
.admin-topbar {
    height: 70px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sidebar-toggle {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
}
.sidebar-toggle:hover {
    background: var(--primary-bg);
    color: var(--primary);
}

.breadcrumb {
    font-size: 13px;
}
.breadcrumb-item a {
    color: var(--text-secondary);
}
.breadcrumb-item.active {
    color: var(--text-primary);
    font-weight: 500;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-icon a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    border-radius: 10px;
    transition: var(--transition);
    font-size: 16px;
}
.topbar-icon a:hover {
    background: var(--primary-bg);
    color: var(--primary);
}

.notification-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--accent-danger);
    color: white;
    font-size: 9px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar-user {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1px solid var(--border-color);
    padding: 6px 14px 6px 8px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 500;
}
.topbar-user:hover {
    border-color: var(--primary);
    background: var(--primary-bg);
}
.user-avatar-sm {
    font-size: 24px;
    color: var(--primary);
}

/* ============================================================
   CONTENT AREA
   ============================================================ */
.admin-content {
    padding: 24px;
    flex: 1;
}

/* ============================================================
   CARDS (STAT CARDS)
   ============================================================ */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02), 0 2px 4px -2px rgba(0,0,0,0.02);
    transition: var(--transition);
}
.card:hover {
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.02);
}

.card-header {
    background: transparent;
    border-bottom: 1px solid var(--border-color);
    padding: 20px 24px;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-body {
    padding: 20px;
}

/* Stat Cards */
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-radius: 0 4px 4px 0;
}
.stat-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.stat-card.primary::before { background: var(--primary); }
.stat-card.success::before { background: var(--accent-success); }
.stat-card.warning::before { background: var(--accent-warning); }
.stat-card.danger::before { background: var(--accent-danger); }
.stat-card.info::before { background: var(--accent-info); }

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.stat-card.primary .stat-icon { background: var(--primary-bg); color: var(--primary); }
.stat-card.success .stat-icon { background: rgba(16,185,129,0.1); color: var(--accent-success); }
.stat-card.warning .stat-icon { background: rgba(245,158,11,0.1); color: var(--accent-warning); }
.stat-card.danger .stat-icon { background: rgba(239,68,68,0.1); color: var(--accent-danger); }
.stat-card.info .stat-icon { background: rgba(6,182,212,0.1); color: var(--accent-info); }

.stat-info h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 2px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}
.stat-info p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.page-header h1 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.page-header p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 14px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    font-weight: 600;
    font-size: 13px;
    padding: 8px 18px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    letter-spacing: 0.2px;
}
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(0, 141, 76, 0.4);
    transform: translateY(-1px);
}

.btn-success {
    background: var(--accent-success);
    border-color: var(--accent-success);
}
.btn-danger {
    background: var(--accent-danger);
    border-color: var(--accent-danger);
}
.btn-warning {
    background: var(--accent-warning);
    border-color: var(--accent-warning);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
}

.btn-sm {
    padding: 5px 12px;
    font-size: 12px;
}

.btn-icon {
    width: 36px;
    height: 36px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-control, .form-select {
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    padding: 10px 14px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 141, 76, 0.1);
}

.form-label {
    font-weight: 600;
    font-size: 13px;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.input-group-text {
    background: #f8fafc;
    border-color: var(--border-color);
    font-size: 13px;
}

/* ============================================================
   TABLES
   ============================================================ */
.table {
    font-size: 13px;
}
.table thead th {
    background: #f8fafc;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    border-bottom: 2px solid var(--border-color);
    padding: 12px 16px;
    white-space: nowrap;
}
.table tbody td {
    padding: 12px 16px;
    vertical-align: middle;
    border-bottom: 1px solid #f1f5f9;
}
.table tbody tr:hover {
    background: #f8fafc;
}

.dataTables_wrapper .dataTables_filter input {
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    font-size: 13px;
}

.dataTables_wrapper .dataTables_length select {
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    padding: 4px 8px;
}

/* ============================================================
   BADGES
   ============================================================ */
.badge {
    font-weight: 600;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.3px;
}

/* ============================================================
   MODALS
   ============================================================ */
.modal-content {
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}
.modal-header {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 24px;
}
.modal-title {
    font-weight: 700;
    font-size: 16px;
}
.modal-body {
    padding: 24px;
}
.modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 16px 24px;
}

/* ============================================================
   LOGIN PAGE
   ============================================================ */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ecfdf5 0%, #eff6ff 50%, #faf5ff 100%);
    position: relative;
    overflow: hidden;
}
.login-page::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16,185,129,0.05) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}
.login-page::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    border-radius: 50%;
}

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

.login-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 30px;
    padding: 48px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.08);
}

.login-logo {
    text-align: center;
    margin-bottom: 32px;
}
.login-logo .logo-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(0, 141, 76, 0.4);
}
.login-logo h2 {
    color: var(--text-primary);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 4px;
}
.login-logo p {
    color: var(--text-secondary);
    font-size: 13px;
}

.login-card .form-control {
    background: #ffffff;
    border: 2px solid var(--border-color);
    color: var(--text-primary) !important;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
}
.login-card .form-control::placeholder {
    color: var(--text-muted);
    opacity: 0.8;
}
.login-card .form-control:focus {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

.login-card .form-label {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 8px;
    display: block;
}

.login-card .input-group-text {
    background: #f1f5f9;
    border: 2px solid var(--border-color);
    border-right: none;
    color: var(--text-secondary);
    padding: 10px 15px;
}

.login-card .btn-primary {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border: none;
    letter-spacing: 0.5px;
}
.login-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 141, 76, 0.5);
}

/* ============================================================
   ALERTS
   ============================================================ */
.alert {
    border-radius: var(--border-radius-sm);
    border: none;
    font-size: 13px;
    font-weight: 500;
}

/* ============================================================
   GIS MAP
   ============================================================ */
.map-container {
    height: 600px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.map-legend {
    background: var(--bg-card);
    border-radius: var(--border-radius-sm);
    padding: 16px;
    border: 1px solid var(--border-color);
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
}
.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}
.legend-dot.green { background: #10b981; }
.legend-dot.yellow { background: #f59e0b; }
.legend-dot.blue { background: #3b82f6; }
.legend-dot.red { background: #ef4444; }

/* ============================================================
   CHART CONTAINER
   ============================================================ */
.chart-container {
    position: relative;
    height: 300px;
}

/* ============================================================
   FRONTEND / PUBLIC
   ============================================================ */
.frontend-navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #ecfdf5 0%, #eff6ff 50%, #faf5ff 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 70%);
    top: -300px;
    right: -200px;
    border-radius: 50%;
}
.hero-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139,92,246,0.06) 0%, transparent 70%);
    bottom: -200px;
    left: -100px;
    border-radius: 50%;
}

.hero-title {
    font-size: 52px;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
}
.hero-title span {
    background: linear-gradient(135deg, var(--primary), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Slider */
.news-slider {
    padding: 80px 0;
    background: var(--bg-body);
}
.news-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.news-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.news-card .card-body {
    padding: 20px;
}
.news-card .card-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
}
.news-card .card-date {
    font-size: 12px;
    color: var(--text-secondary);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .admin-sidebar {
        transform: translateX(-100%);
    }
    .admin-main {
        margin-left: 0;
    }
    .sidebar-open .admin-sidebar {
        transform: translateX(0);
    }
    .sidebar-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 1035;
    }
    
    .hero-title {
        font-size: 36px;
    }
    .hero-subtitle {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .admin-content {
        padding: 16px;
    }
    .stat-card {
        padding: 16px;
    }
    .stat-info h3 {
        font-size: 22px;
    }
    .page-header h1 {
        font-size: 20px;
    }
    .login-card {
        padding: 28px;
    }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.5s ease forwards;
}

.stat-card { animation: fadeInUp 0.5s ease forwards; }
.stat-card:nth-child(1) { animation-delay: 0.05s; }
.stat-card:nth-child(2) { animation-delay: 0.1s; }
.stat-card:nth-child(3) { animation-delay: 0.15s; }
.stat-card:nth-child(4) { animation-delay: 0.2s; }
.stat-card:nth-child(5) { animation-delay: 0.25s; }
.stat-card:nth-child(6) { animation-delay: 0.3s; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rounded-xl {
    border-radius: var(--border-radius-lg) !important;
}

.fw-800 {
    font-weight: 800 !important;
}

