/* General Styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    background-color: #f0f2f5;
    color: #333;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    margin-right: 15px;
}

.site-title {
    font-size: 1.5em;
    font-weight: bold;
    color: #0056b3;
}

.main-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav ul li {
    display: inline-block;
    margin-left: 25px;
}

.main-nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.main-nav ul li a:hover, .main-nav ul li a.active {
    color: #007bff;
    border-bottom: 2px solid #007bff;
}

/* Main Content */
main {
    padding: 40px 0;
}

/* Slideshow */
.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    border-radius: 8px;
    overflow: hidden;
}

.slide {
    display: none;
}

.slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    vertical-align: middle;
}

.slide-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 20px;
    text-align: center;
}

.slide-text h2 {
    margin-top: 0;
    font-size: 2em;
}

.slide-actions {
    margin-top: 15px;
}

.slide-btn {
    text-decoration: none;
    color: white;
    background-color: #007bff;
    padding: 12px 25px;
    border-radius: 5px;
    margin: 0 10px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.slide-btn.secondary {
    background-color: #28a745;
}

.slide-btn:hover {
    background-color: #0056b3;
}
.slide-btn.secondary:hover {
    background-color: #218838;
}

/* Fade animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* General Page Content */
.page-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.page-content h1 {
    color: #0056b3;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    margin-top: 0;
}

/* Form Styling */
.form-container { display: flex; gap: 40px; margin-top: 20px; }
.form-box { flex: 1; padding: 20px; background: #f9f9f9; border: 1px solid #ddd; border-radius: 5px; }
label { display: block; margin-bottom: 8px; font-weight: bold; }
input[type="text"], input[type="file"], textarea { width: 100%; padding: 10px; margin-bottom: 10px; border-radius: 4px; border: 1px solid #ccc; box-sizing: border-box; }
button { width: 100%; padding: 12px; border: none; background: #007bff; color: white; font-size: 16px; border-radius: 5px; cursor: pointer; transition: background-color 0.3s ease; }
button:hover { background: #0056b3; }

/* Table Styling */
table { width: 100%; border-collapse: collapse; margin-top: 20px; }
th, td { padding: 12px; border: 1px solid #ddd; text-align: left; }
thead { background-color: #007bff; color: white; }
tbody tr:nth-child(even) { background-color: #f8f9fa; }
td img.table-photo { max-width: 80px; height: auto; border-radius: 4px; }


/* Gallery Styling */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
.gallery-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}
.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.gallery-item p {
    margin: 10px 0;
    font-weight: bold;
}

/* Footer */
.main-footer {
    background-color: #343a40;
    color: #f8f9fa;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* Styling untuk Tabel Pemantauan di Homepage */
.live-tracking-section {
    background-color: #fff;
    padding: 30px;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.live-tracking-section h2 {
    color: #0056b3;
    text-align: center;
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 1.8em;
}

.table-responsive {
    overflow-x: auto;
}

.live-tracking-section table {
    width: 100%;
    border-collapse: collapse;
}

.live-tracking-section th {
    background-color: #e9ecef;
    color: #495057;
    font-weight: 600;
    text-align: left;
    padding: 15px;
}

.live-tracking-section td {
    padding: 15px;
    border-bottom: 1px solid #dee2e6;
    vertical-align: middle;
}

.live-tracking-section tbody tr:last-child td {
    border-bottom: none;
}

.live-tracking-section tbody tr:hover {
    background-color: #f8f9fa;
}

.countdown {
    font-weight: bold;
    font-size: 1.2em;
    font-family: 'Courier New', Courier, monospace;
    color: #28a745; /* Warna hijau untuk waktu berjalan */
    background-color: #e9f7ef;
    padding: 5px 10px;
    border-radius: 5px;
}

.countdown.expired {
    color: #dc3545; /* Warna merah untuk waktu habis */
    background-color: #f8d7da;
}

/* ========================================= */
/* CSS BARU UNTUK DASBOR HOMEPAGE            */
/* ========================================= */

/* Kontainer utama untuk dasbor 2 kolom */
.dashboard-container {
    display: flex;
     flex-direction: column; /* INI KUNCI PERUBAHANNYA */
    gap: 30px;
    margin-top: 40px;
}

/* Setiap item di dalam dasbor (kolom siswa dan kolom tamu) */
.dashboard-item {
    flex: 1; /* Setiap item mencoba mengambil ruang yang sama */
    min-width: 250px; /* Lebar minimum sebelum turun ke bawah */
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.dashboard-item h2 {
    color: #0056b3;
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.6em;
}

.table-responsive {
    overflow-x: auto;
}

.dashboard-item table {
    width: 100%;
    border-collapse: collapse;
}

.dashboard-item th {
    background-color: #e9ecef;
    color: #495057;
    font-weight: 600;
    text-align: left;
    padding: 12px 15px;
}

.dashboard-item td {
    padding: 12px 15px;
    border-bottom: 1px solid #dee2e6;
    vertical-align: middle;
}

.dashboard-item tbody tr:last-child td {
    border-bottom: none;
}

/* KUNCI UNTUK SCROLLABLE TABLE */
.table-wrapper {
    max-height: 500px; /* Batas tinggi maksimal tabel */
    overflow-y: auto;  /* AKTIFKAN SCROLL vertikal jika konten melebihi max-height */
    border: 1px solid #e9ecef;
    border-radius: 5px;
}

/* Sedikit penyesuaian agar tabel di dalam wrapper tidak memiliki border ganda */
.table-wrapper table {
    border: none;
}
.table-wrapper td {
    border-bottom: 1px solid #e9ecef;
}
.table-wrapper tbody tr:last-child td {
    border-bottom: none;
}
/* ====================================================== */
/* CSS BARU UNTUK DESAIN RESPONSIF & HAMBURGER MENU     */
/* ====================================================== */

/* 1. Style untuk Tombol Hamburger (Default: Sembunyi di Desktop) */
.hamburger-menu {
    display: none; /* Sembunyikan di desktop */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101; /* Pastikan di atas elemen lain */
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* Animasi Hamburger menjadi 'X' saat aktif */
.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}
.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}
.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.site-title-link {
    text-decoration: none;
}


/* ====================================================== */
/* 2. MEDIA QUERY - Aturan untuk layar kecil (Mobile)   */
/* ====================================================== */
@media (max-width: 992px) { /* Breakpoint bisa disesuaikan, 992px atau 768px umum digunakan */

    /* Tampilkan tombol hamburger, sembunyikan menu desktop */
    .hamburger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px; /* Lebar menu mobile */
        height: 100%;
        background-color: #ffffff;
        box-shadow: -2px 0 5px rgba(0,0,0,0.15);
        transform: translateX(100%); /* Sembunyikan di luar layar kanan */
        transition: transform 0.3s ease-in-out;
        padding-top: 80px; /* Beri ruang dari atas */
        z-index: 100;
    }

    /* Saat menu aktif, geser ke dalam layar */
    .main-nav.active {
        transform: translateX(0);
    }

    /* Ubah tampilan daftar menu menjadi vertikal */
    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }

    .main-nav ul li {
        display: block;
        margin: 0;
        width: 100%;
        text-align: left;
    }

    .main-nav ul li a {
        display: block;
        padding: 15px 25px;
        border-bottom: 1px solid #f0f0f0;
        color: #333;
    }
    .main-nav ul li a:hover {
        background-color: #f8f9fa;
        border-bottom: 1px solid #f0f0f0; /* Hapus border hover desktop */
    }

    /* Atur layout dasbor di homepage menjadi 1 kolom */
    .dashboard-container {
        flex-direction: column;
    }
    .dashboard-item {
        min-width: 280px; /* Lebar penuh */
    }

    /* Atur grid pegawai menjadi 1 kolom */
    .pegawai-grid {
        grid-template-columns: 1fr;
    }

    /* Penyesuaian ukuran font dan padding */
    h1, .page-content h1 {
        font-size: 1.8em;
    }
    h2, .dashboard-item h2 {
        font-size: 1.5em;
    }
    .container {
        padding: 0 15px;
    }
}
/* ... di dalam blok @media (max-width: 992px) { ... } ) ... */


/* ======================================================= */
/* ==   PERBAIKAN TOMBOL SLIDER MOBILE (VERSI LEBIH KOKOH) == */
/* ======================================================= */

.slide-text {
    /* Jadikan kontainer teks ini flexbox juga untuk kontrol penuh */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Pusatkan konten secara vertikal jika ada sisa ruang */
    padding: 20px; /* Beri padding agar tidak mepet */
    box-sizing: border-box;
}

.slide-actions {
    display: flex;          /* Gunakan flexbox */
    flex-direction: column; /* Susun tombol ke bawah (vertikal) */
    gap: 12px;              /* Beri jarak antar tombol sedikit lebih besar */
    width: 100%;            /* Penuhi lebar kontainer */
    margin-top: 20px;       /* Jarak dari teks di atasnya */
}

.slide-btn {
    margin: 0 !important; /* Paksa hapus margin horizontal dari versi desktop */
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 15px 20px; /* Padding yang nyaman untuk disentuh jari */
}

/* ========================================= */
/* ==   CSS UNTUK TABEL SCROLL HORIZONTAL == */
/* ========================================= */

/* KODE BARU UNTUK SCROLL HORIZONTAL & VERTIKAL */
.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto; /* Mengaktifkan scroll horizontal jika kolomnya lebar */

    /* ▼▼ KODE BARU UNTUK BATAS TINGGI DAN SCROLL VERTIKAL ▼▼ */
    max-height: 500px; /* Menetapkan tinggi maksimal tabel adalah 500px */
    overflow-y: auto;  /* Mengaktifkan scroll vertikal jika isi tabel melebihi 500px */
    /* ▲▲ AKHIR DARI KODE BARU ▲▲ */

    -webkit-overflow-scrolling: touch; /* Membuat scroll lebih mulus di perangkat mobile */
    border: 1px solid #e9ecef; /* Tambahkan border agar area scroll terlihat jelas */
    border-radius: 5px;
}

/* Opsional tapi direkomendasikan: 
   Mencegah teks di dalam tabel turun baris (wrap) yang tidak diinginkan di mobile.
   Ini memastikan tabelnya benar-benar "lebar" dan memicu scroll. */
.table-responsive th,
.table-responsive td {
    white-space: nowrap; 
}

/* ========================================= */
/* ==   CSS UNTUK TABEL SCROLL HORIZONTAL == */
/* ========================================= */

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto; /* Ini yang membuat scrollbar horizontal muncul */
    -webkit-overflow-scrolling: touch; /* Membuat scroll lebih mulus di iOS */
}

.table-responsive th,
.table-responsive td {
    white-space: nowrap; 
}

/* ========================================= */
/* ==   PERBAIKAN HEADER RESPONSIF        == */
/* ========================================= */

/* --- Pengaturan Dasar untuk Kontainer Header --- */
.main-header .container {
    display: flex;
    justify-content: space-between; /* Item pertama ke kiri, item terakhir ke kanan */
    align-items: center; /* KUNCI UTAMA: Sejajarkan semua item secara vertikal di tengah */
    gap: 15px; /* Beri jarak aman antar elemen */
}

/* --- Pengaturan untuk Grup Logo dan Judul --- */
.logo-container {
    display: flex;
    align-items: center; /* Sejajarkan logo dan judul di dalamnya */
    gap: 12px; /* Jarak antara logo dan judul */
    flex-shrink: 0; /* Mencegah grup ini menyusut */
}

.logo {
    height: 50px;
    /* Hapus margin-right jika ada, karena kita sudah pakai 'gap' */
    margin-right: 0; 
}

.site-title {
    font-size: 1.2em; /* Sedikit sesuaikan ukuran font */
    font-weight: bold;
    color: #0056b3;
    white-space: nowrap; /* Mencegah judul turun baris jika terlalu panjang */
}

/* Memastikan link judul tidak punya garis bawah */
.site-title-link {
    text-decoration: none;
}

/* Navigasi utama dan tombol menu akan otomatis terdorong ke kanan oleh justify-content: space-between */


/* --- Penyesuaian Ukuran untuk Tampilan Mobile yang Lebih Kecil --- */
@media (max-width: 480px) {
    .logo {
        height: 40px; /* Perkecil sedikit logo di mobile */
    }

    .site-title {
        font-size: 1em; /* Perkecil sedikit judul di mobile */
    }

    .logo-container {
        gap: 8px; /* Kurangi jarak logo & judul di mobile */
    }
}

/* ========================================= */
/* ==   WARNA UNTUK TOMBOL KETIGA SLIDER  == */
/* ========================================= */

.slide-btn.tertiary {
    background-color: #f0ad4e; /* Warna oranye yang bersahabat */
}

.slide-btn.tertiary:hover {
    background-color: #ec971f; /* Warna oranye menjadi lebih gelap saat disentuh mouse */
}

/* Style untuk PDF Viewer */
.pdf-viewer-container {
    width: 100%;
    height: 600px; /* Atur tinggi frame PDF */
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}
.pdf-viewer-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.pdf-download-link {
    text-align: center;
    font-size: 0.9em;
    color: #555;
    margin-top: 10px;
}
/* Style untuk Tombol Download Anggaran */
.download-container {
    text-align: center;
    padding: 40px 20px;
}
.download-container p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #333;
}

/* Style untuk PDF Viewer */
.pdf-viewer-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 141.42%; /* Aspect Ratio untuk kertas A4 portrait (sqrt(2):1) */
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.pdf-viewer-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.pdf-download-link {
    text-align: center;
    font-size: 0.9em;
    color: #555;
    margin-top: 10px;
}

/* Style untuk Form Filter di Dasbor Homepage */
.filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
}
.filter-form input[type="text"] {
    flex-grow: 1; /* Biarkan input teks memanjang */
    min-width: 200px;
}
.filter-form input, .filter-form button, .filter-form a {
    margin-bottom: 0; /* Hapus margin bawah dari style umum */
    padding: 8px 12px;
}
.filter-form .btn-reset {
    background-color: #6c757d;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
}
.filter-form .btn-reset:hover {
    background-color: #5a6268;
}

/* ========================================= */
/* == STYLE BARU UNTUK FORM MODERN (KACA) == */
/* ========================================= */
.form-modern-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.form-card-modern {
    width: 100%;
    max-width: 700px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    padding: 40px;
    color: #333;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-icon {
    font-size: 3.5em;
    line-height: 1;
    margin-bottom: 15px;
}

.form-header h2 {
    color: #2c3e50;
    font-size: 2em;
    margin-bottom: 10px;
    border: none;
}
.form-header h2::after {
    display: none; /* Hilangkan garis bawah default */
}

.form-header p {
    color: #555;
    font-size: 1.1em;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-card-modern label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.form-card-modern input[type="text"],
.form-card-modern textarea,
.form-card-modern input[type="file"] {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    font-size: 1em;
    color: #333;
    transition: all 0.3s ease;
}

.form-card-modern input[type="text"]:focus,
.form-card-modern textarea:focus {
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 15px rgba(78, 205, 196, 0.5);
    border-color: #4ecdc4;
    outline: none;
}

.form-submit-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1.2em;
    font-weight: bold;
    color: white;
    cursor: pointer;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #764ba2, #667eea);
}
/* ========================================= */
/* ==   STYLE BARU UNTUK POPUP GAMBAR     == */
/* ========================================= */

/* Latar belakang gelap yang menutupi seluruh layar */
.popup-overlay {
    display: none; /* Defaultnya tersembunyi */
    position: fixed; /* Tetap di tempat saat scroll */
    z-index: 2000; /* Pastikan di atas segalanya */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
}

/* Gambar di dalam popup */
.popup-content {
    display: block;
    margin: auto;
    max-width: 85%;
    max-height: 85vh;
    border-radius: 5px;
    animation: zoomIn 0.4s ease-out;
}

/* Animasi saat popup muncul */
@keyframes zoomIn {
    from {transform: scale(0.5); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

/* Tombol 'Close' (X) */
.popup-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}
.popup-close:hover,
.popup-close:focus {
    color: #bbb;
    text-decoration: none;
}

/* Keterangan/Caption di bawah gambar */
#popupCaption {
    margin-top: 15px;
    text-align: center;
    color: #ccc;
    font-size: 1.1em;
}

/* Ubah kursor pada foto di tabel agar terlihat bisa diklik */
.table-photo {
    cursor: zoom-in;
    transition: transform 0.2s;
}
.table-photo:hover {
    transform: scale(1.1);
}

/* ========================================= */
/* == STYLE BARU UNTUK FORM MODERN (KACA) == */
/* ========================================= */
.form-modern-container { /* ... (kode css dari jawaban form_tamu) ... */ }
.form-card-modern { /* ... (kode css dari jawaban form_tamu) ... */ }
/* ... dan semua class terkait lainnya ... */
.form-fieldset-modern {
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}
.form-fieldset-modern legend {
    padding: 0 10px;
    font-weight: bold;
    color: #333;
}
.form-hint {
    font-size: 0.9em; 
    color: #555; 
    margin-top: -10px; 
    margin-bottom: 10px;
}

//form guru
/* -- Style untuk Testimoni -- */
    .testimoni-container { display: flex; flex-direction: column; gap: 20px; }
    .testimoni-card { display: flex; gap: 15px; background: #f8f9fa; padding: 15px; border-radius: 10px; border-left: 5px solid #667eea; }
    .testimoni-photo { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
    .testimoni-text { font-style: italic; color: #555; margin-bottom: 10px; }
    .testimoni-name { font-weight: bold; margin: 0; }
    .testimoni-instansi { font-size: 0.9em; color: #777; margin: 0; }

.testimoni-slider-container {
    height: 350px; /* Atur tinggi wadah, sesuaikan jika perlu */
    overflow: hidden; /* Sembunyikan testimoni yang di luar wadah */
    position: relative;
}

.testimoni-slider-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    width: 100%;
    /* Animasi akan ditambahkan oleh JavaScript */
}

/* Style untuk card testimoni (tidak berubah) */
.testimoni-card { 
    display: flex; 
    gap: 15px; 
    background: rgba(248, 249, 250, 0.8); 
    padding: 15px; 
    border-radius: 10px; 
    border-left: 5px solid #667eea;
    flex-shrink: 0; /* Mencegah card menyusut */
}
.testimoni-photo { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.testimoni-text { font-style: italic; color: #555; margin-bottom: 10px; }
.testimoni-name { font-weight: bold; margin: 0; }
.testimoni-instansi { font-size: 0.9em; color: #777; margin: 0; }
