:root {
    --merah: #d32f2f;
    --hijau: #2e7d32;
    --oranye: #f57c00;
    --putih: #ffffff;
    --abu-lembut: #f5f5f5;
    --abu-teks: #424242;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #fefefe, #f0f0f0);
    min-height: 100vh;
    color: var(--abu-teks);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.company-header {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    margin-bottom: 1rem;
    border-top: 5px solid var(--oranye);
}

.company-header h1 {
    color: var(--merah);
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.alamat {
    color: #666;
    margin-bottom: 0.5rem;
}

.kontak {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-weight: 500;
}

.dashboard-title {
    text-align: center;
    color: var(--hijau);
    font-size: 1.6rem;
    margin: 1rem 0 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.report-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.8rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid;
}

.report-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.report-card.merah { border-left-color: var(--merah); }
.report-card.hijau { border-left-color: var(--hijau); }
.report-card.oranye { border-left-color: var(--oranye); }

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.merah .icon-box { background: rgba(211, 47, 47, 0.1); color: var(--merah); }
.hijau .icon-box { background: rgba(46, 125, 50, 0.1); color: var(--hijau); }
.oranye .icon-box { background: rgba(245, 124, 0, 0.1); color: var(--oranye); }

.report-card h3 { margin-bottom: 1rem; font-size: 1.15rem; }
.report-card ul { list-style: none; margin-bottom: 1.2rem; padding-left: 0; }
.report-card ul li { padding: 0.4rem 0; border-bottom: 1px dashed #eee; font-size: 0.95rem; }

.btn-card {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}
.merah .btn-card { background: var(--merah); }
.hijau .btn-card { background: var(--hijau); }
.oranye .btn-card { background: var(--oranye); }
.btn-card:hover { opacity: 0.9; }

footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #ddd;
    color: #777;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .kontak { gap: 1rem; flex-direction: column; }
    .company-header h1 { font-size: 1.4rem; }
}