/**
 * LPPM Modern Admin Dashboard Workspace CSS Engine
 * Layout: Public Admin Workspace with Top Navbar & Left Icon Rail
 * Inspiration: University QA & Research Dashboard Workspace UI
 */

/* ==========================================================================
   1. CORE RESET & THEME VARIABLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body.lppm-admin-dashboard-body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #f1f5f9; /* Off-white / light blue-grey admin workspace background */
    color: #334155;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: #0f172a;
    font-weight: 700;
}

a {
    color: #0d9488;
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: #0f766e;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   2. TOP ADMIN DASHBOARD NAVBAR
   ========================================================================== */
.admin-top-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.admin-header-container {
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo & Brand */
.admin-brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-icon-globe {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0d9488 0%, #2563eb 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.brand-text-group {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -0.3px;
}

.brand-sub {
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* Navigation Tabs */
.admin-nav-tabs .tab-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.admin-nav-tabs .tab-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    color: #475569;
    padding: 24px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
}

.admin-nav-tabs .tab-link i {
    font-size: 0.85rem;
    color: #94a3b8;
    transition: color 0.2s ease;
}

.admin-nav-tabs .tab-item.active .tab-link,
.admin-nav-tabs .tab-link:hover {
    color: #0d9488;
    border-bottom-color: #0d9488;
}

.admin-nav-tabs .tab-item.active .tab-link i,
.admin-nav-tabs .tab-link:hover i {
    color: #0d9488;
}

/* Header Actions */
.admin-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.admin-search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 12px;
    color: #94a3b8;
    font-size: 0.85rem;
}

.search-input {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 8px 14px 8px 34px;
    font-size: 0.85rem;
    color: #0f172a;
    width: 200px;
    transition: all 0.25s ease;
}

.search-input:focus {
    outline: none;
    background: #ffffff;
    border-color: #0d9488;
    width: 250px;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

.action-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.action-icon-btn:hover {
    background: #f1f5f9;
    color: #0d9488;
}

.notification-badge-dot {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

.user-profile-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 12px 4px 6px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
}

.user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #0d9488;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.user-meta {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: #0f172a;
    line-height: 1.1;
}

.user-role {
    font-size: 0.68rem;
    color: #10b981;
    font-weight: 600;
}

.mobile-dock-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.3rem;
    color: #0f172a;
    cursor: pointer;
}

/* ==========================================================================
   3. ADMIN WORKSPACE LAYOUT (DOCK RAIL + CANVAS)
   ========================================================================== */
.admin-workspace-layout {
    display: flex;
    max-width: 1540px;
    margin: 0 auto;
    padding: 24px;
    gap: 24px;
    align-items: flex-start;
    position: relative;
}

/* Left Vertical Dock Rail */
.admin-dock-rail {
    position: sticky;
    top: 96px;
    align-self: flex-start;
    height: fit-content;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 12px 8px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    z-index: 99;
}

.dock-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dock-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #64748b;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.dock-item.active .dock-link,
.dock-link:hover {
    background: #ccfbf1;
    color: #0f766e;
    transform: scale(1.05);
}

.dock-settings {
    margin-top: 16px;
    border-top: 1px solid #f1f5f9;
    padding-top: 12px;
}

/* Main Workspace Canvas Area */
.admin-workspace-canvas {
    flex: 1;
    min-width: 0;
}

/* Workspace Top Bar */
.workspace-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.workspace-title-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.workspace-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.3px;
}

.workspace-subtitle-divider {
    color: #cbd5e1;
    font-weight: 300;
}

.workspace-year-badge {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 4px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #475569;
}

.workspace-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-dashboard-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-dashboard-action.outline {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #334155;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
}

.btn-dashboard-action.outline:hover {
    background: #f8fafc;
    border-color: #0d9488;
    color: #0d9488;
}

.btn-dashboard-action.primary {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    border: 1px solid transparent;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.btn-dashboard-action.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(13, 148, 136, 0.4);
}

/* ==========================================================================
   4. EXECUTIVE ADMIN CARDS GRID & KPIS (EXACT REFERENCE SCREENSHOT)
   ========================================================================== */
.dashboard-hero-widget-container {
    margin-bottom: 24px;
}

.hero-analytics-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
    transition: all 0.3s ease;
}

.hero-analytics-card:hover {
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
}

.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.hero-card-header .card-brand-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-card-header .card-brand-title h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
}

.badge-tag-teal {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    color: #0f766e;
    background: #ccfbf1;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-chart-container {
    position: relative;
    height: 350px;
    width: 100%;
}

.hero-card-footer-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}

.footer-stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.stat-icon-box.bg-teal { background: #ccfbf1; color: #0f766e; }
.stat-icon-box.bg-blue { background: #dbeafe; color: #1e40af; }

.stat-text-group {
    display: flex;
    flex-direction: column;
}

.stat-lbl {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
}

.stat-val {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
}

/* KPI Cards Row (Card 1: Key Research Metrics, Citations, etc.) */
.dashboard-kpi-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.admin-kpi-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.admin-kpi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
    border-color: #cbd5e1;
}

.kpi-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.kpi-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.kpi-growth-badge {
    background: #d1fae5;
    color: #065f46;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 3px 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.kpi-val-group {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
}

.kpi-number {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    color: #0f172a;
    line-height: 1;
}

.kpi-suffix {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #64748b;
}

.kpi-title-label {
    font-size: 0.82rem;
    color: #64748b;
    font-weight: 600;
}

.kpi-sparkline-box {
    height: 36px;
    width: 100%;
    margin-top: 10px;
}

/* Visualisasi Data 5 Cards Grid */
.dashboard-visual-grid-container {
    margin-bottom: 32px;
}

.workspace-section-header {
    margin-bottom: 16px;
}

.workspace-section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
}

.admin-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.admin-widget-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.admin-widget-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
}

.full-span-card {
    grid-column: span 2;
}

.admin-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f1f5f9;
}

.card-title-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.widget-icon {
    font-size: 1.25rem;
    color: #0d9488;
}

.card-titles h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.card-subtitle {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 500;
}

.card-menu-dots {
    color: #94a3b8;
    cursor: pointer;
    padding: 4px;
}

.chart-canvas-container {
    position: relative;
    height: 320px;
    width: 100%;
    margin-top: auto;
}

/* ==========================================================================
   5. EXECUTIVE ADMIN DATA TABLE (CARD 5: LAPORAN TERBARU)
   ========================================================================== */
.admin-table-wrapper {
    overflow-x: auto;
}

.admin-data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.admin-data-table th {
    background: #f8fafc;
    color: #0f172a;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-align: left;
    padding: 12px 16px;
    border-bottom: 2px solid #e2e8f0;
}

.admin-data-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
    vertical-align: middle;
}

.admin-data-table tr:hover td {
    background: #f8fafc;
}

.table-doc-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #0f172a;
}

.doc-icon {
    color: #0d9488;
    font-size: 1rem;
}

.badge-table-cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.table-date {
    font-size: 0.8rem;
    color: #64748b;
}

.table-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.table-status-pill.active {
    background: #d1fae5;
    color: #065f46;
}

.btn-table-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #0d9488;
    transition: all 0.2s ease;
}

.btn-table-download:hover {
    background: #0d9488;
    color: #ffffff;
    border-color: #0d9488;
}

.btn-table-action {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0d9488;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-table-action:hover {
    color: #0f766e;
}

/* ==========================================================================
   6. SERVICES & PARTNERS & NEWS WIDGETS
   ========================================================================== */
.dashboard-services-container,
.dashboard-news-container {
    margin-bottom: 32px;
}

.card-widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.card-widget-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-widget-title i {
    color: #0d9488;
}

.services-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.admin-service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.admin-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.service-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.service-badge-pill {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.service-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.25;
}

.service-desc {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.55;
    margin-bottom: 20px;
}

.service-action-btn {
    margin-top: auto;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0d9488;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.service-action-btn:hover {
    color: #0f766e;
    transform: translateX(4px);
}

.dashboard-partners-widget {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
}

.dashboard-partners-widget .partners-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: #64748b;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dashboard-partners-widget .partner-marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
}

.dashboard-partners-widget .partner-track {
    display: inline-flex;
    gap: 32px;
    animation: marquee 25s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.dashboard-partners-widget .partner-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px 16px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #475569;
}

/* News Grid Cards */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.news-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.07);
}

.news-thumb-wrapper {
    position: relative;
    height: 160px;
    width: 100%;
    overflow: hidden;
}

.news-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-thumb-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0d9488 0%, #2563eb 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    opacity: 0.9;
}

.news-date-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-meta {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 8px;
}

.news-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.35;
}

.news-title a {
    color: #0f172a;
}

.news-title a:hover {
    color: #0d9488;
}

.news-excerpt {
    font-size: 0.88rem;
    color: #475569;
    margin-bottom: 16px;
    line-height: 1.5;
}

.news-footer {
    margin-top: auto;
}

.news-read-more {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: #0d9488;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-read-more:hover {
    color: #0f766e;
}

/* ==========================================================================
   7. FOOTER & BACK TO TOP & WHATSAPP
   ========================================================================== */
.site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 70px 0 0 0;
    margin-top: 60px;
    position: relative;
    z-index: 100;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo-title {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.accent-dot {
    color: #0d9488;
}

.footer-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #94a3b8;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #0d9488;
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
}

.footer-menu a {
    color: #94a3b8;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.footer-menu a i {
    font-size: 0.75rem;
    color: #0d9488;
}

.footer-menu a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    color: #94a3b8;
}

.contact-item i {
    color: #0d9488;
    margin-top: 4px;
}

.contact-item a {
    color: #94a3b8;
}

.contact-item a:hover {
    color: #ffffff;
}

.footer-bottom-bar {
    background: #020617;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
}

/* WhatsApp Floating Button */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    background: #10b981;
    color: #ffffff !important;
    padding: 12px 20px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
}

.wa-float:hover {
    background: #059669;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 14px 30px rgba(16, 185, 129, 0.5);
}

.back-to-top {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #e2e8f0;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #0d9488;
    color: #ffffff;
    border-color: #0d9488;
}

/* ==========================================================================
   8. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
    .dashboard-kpi-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .admin-dashboard-grid {
        grid-template-columns: 1fr;
    }
    .full-span-card {
        grid-column: span 1;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .admin-nav-tabs {
        display: none;
    }
    .mobile-dock-toggle {
        display: block;
    }
    .admin-dock-rail {
        display: none;
    }
}

@media (max-width: 640px) {
    .dashboard-kpi-row {
        grid-template-columns: 1fr;
    }
    .admin-header-container {
        padding: 0 16px;
    }
    .admin-search-box {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
