/* =============================================
   Data Statistik Styles - BHP Medan
   ============================================= */

.data-container {
    max-width: 1400px;
    margin: -30px auto 60px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* ===== Summary Cards Grid ===== */
.summary-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}

@media (max-width: 1400px) {
    .summary-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 992px) {
    .summary-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .summary-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .summary-grid { grid-template-columns: 1fr; }
}

.summary-card {
    background: white;
    border-radius: 14px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    transition: transform 0.25s, box-shadow 0.25s;
}

.summary-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.summary-total {
    border-left: 4px solid #050a1f;
}

.summary-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.summary-info {
    flex: 1;
}

.summary-number {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 2px;
}

.summary-label {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    line-height: 1.3;
}

/* ===== Charts ===== */
.charts-row {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.charts-row-single {
    grid-template-columns: 1fr;
}

@media (max-width: 992px) {
    .charts-row {
        grid-template-columns: 1fr;
    }
}

.chart-card {
    background: white;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.chart-card:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.chart-header {
    padding: 16px 20px;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
}

.chart-header h3 {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chart-header h3 i {
    color: #64748b;
    font-size: 16px;
}

.chart-body {
    padding: 20px;
    height: 340px;
    position: relative;
}

.chart-body-pie {
    height: 380px;
}

.chart-full .chart-body {
    height: 300px;
}

/* ===== Insights Box ===== */
.insights-box {
    background: linear-gradient(135deg, rgba(5, 10, 31, 0.95), rgba(13, 26, 68, 0.95));
    border-left: 4px solid #f5b700;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 24px;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.insights-header {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f5b700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.insights-list li {
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.insights-list li:last-child {
    margin-bottom: 0;
}

.insights-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #10B981;
    font-size: 14px;
    margin-top: 2px;
}

