/* GENERAL STYLING */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #1DCD9F; 
    --primary-color-darker: #17a87f;
    --text-dark: #212529;
    --text-light: #6c757d;
    --white: #fff;
    --dark-blue: #0d2c4a;
    --light-gray: #f8f9fa;
    --border-color: #dee2e6;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);

    --card-blue-bg: rgb(4, 67, 150);  
    --card-green-bg: #018822; 
    --card-yellow-bg: #f2ce30; 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Same height as .hero-section */
    object-fit: cover; /* This makes the video cover the area without distortion */
    z-index: -1; /* Places the video behind all other content */
}



a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color-darker);
}

ul { list-style: none; }

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* TOP BAR */
.top-bar {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
}

/* HEADER & NAVBAR */
.header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    text-decoration: none;
}
.logo .text-wrapper h1 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    line-height: 1.2;
    font-weight: 700;
}
.logo .text-wrapper p {
    font-size: 0.8rem;
    color: var(--text-light);
}
.navbar {
    display: flex;
    align-items: center;
    gap: 25px;
}
.nav-links {
    display: flex;
    gap: 25px;
}

/* DROPDOWN STYLING */
.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

/* Dropdown Icon */
.dropdown-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border-top: 3px solid var(--primary-color);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid var(--light-gray);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    color: var(--text-dark);
    padding: 12px 20px;
    display: block;
    font-weight: 400;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.apply-now-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}
.apply-now-btn:hover {
    background-color: var(--primary-color-darker);
    color: var(--white);
}


/* HERO SECTION */
.hero-section {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 100px; /* Memberi ruang agar tidak tertutup kartu */
}
/* --- Penyesuaian Hero Content --- */
.hero-content p {
    font-size: 1.1rem; /* Font diperkecil */
    margin-bottom: 15px;
    font-weight: 300;
}
.hero-content h2 {
    font-size: 2.8rem; /* Font diperkecil */
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}
.btn.explore-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1rem;
}
.btn.explore-btn:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* WHY CHOOSE US SECTION */
.why-choose-us {
    padding: 80px 0; /* Memberi padding atas lebih besar */
    background-color: var(--light-gray);
    position: relative;
}
.why-choose-us .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
}
.stat-item p {
    font-size: 1rem;
    color: var(--text-light);
}

/* --- EFEK KARTU OVERLAP --- */
.featured-programs {
    padding: 0; /* Padding dihilangkan karena posisi diatur manual */
    margin-top: -150px; /* INI KUNCINYA: menarik section ke atas */
    margin-bottom: 100px;
    position: relative;
    z-index: 10; /* Memastikan kartu berada di atas hero section */
}
.program-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* --- Penyesuaian Desain Kartu --- */
.card {
    background-color: rgba(18, 39, 59, 0.85); /* Latar semi-transparan */
    backdrop-filter: blur(5px); /* Efek glassmorphism */
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}
.card i {
    font-size: 3rem;
    padding: 20px;
    border-radius: 50%;
    color: var(--white);
    background-color: rgba(0, 170, 255, 0.1);
    margin-bottom: 20px;
    display: inline-block;
}
.card h3, .card p {
    color: var(--white);
}
.card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}
.card p {
    font-size: 0.95rem;
    opacity: 0.9;
}
/* Memberi warna spesifik untuk setiap kartu */
.program-cards .card:nth-of-type(1) {
    background-color: var(--card-blue-bg);
}
.program-cards .card:nth-of-type(2) {
    background-color: var(--card-yellow-bg);
}
.program-cards .card:nth-of-type(3) {
    background-color: var(--card-green-bg);
}

/* NEWS ANNOUNCEMENTS SECTION */
.news-announcements {
    padding: 80px 0;
    background-color: var(--light-gray);
}
.news-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.news-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.news-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.news-content {
    padding: 25px;
}
.news-date {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}
.news-content h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--dark-blue);
}
.news-content a {
    font-weight: 600;
}

/* TESTIMONIALS SECTION */
.testimonials {
    padding: 80px 0;
}
.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.testimonial-card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}
.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--primary-color);
}
.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}
.testimonial-card h4 {
    font-size: 1.1rem;
    color: var(--dark-blue);
}
.testimonial-card span {
    font-size: 0.9rem;
    color: var(--primary-color);
}

/* CALL TO ACTION SECTION */
.call-to-action {
    background-color: var(--dark-blue);
    color: var(--white);
    text-align: center;
    padding: 60px 0;
}
.call-to-action h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}
.call-to-action p {
    opacity: 0.8;
    margin-bottom: 25px;
}
.btn.cta-btn {
    background-color: var(--white);
    color: var(--dark-blue);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.btn.cta-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* FOOTER */
.footer {
    background-color: #0d1b2a; /* Even darker blue */
    color: rgba(255,255,255,0.7);
    padding: 70px 0 20px;
    font-size: 0.9rem;
}
.footer .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.footer-col .logo { margin-bottom: 20px; }
.footer-col h5 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}
.footer-about { line-height: 1.8; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: var(--primary-color); }
.footer-col p { margin-bottom: 10px; }
.footer-col p i {
    width: 20px;
    color: var(--primary-color);
    margin-right: 5px;
}
.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}
.social-icons a {
    width: 35px; height: 35px;
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-size: 1rem;
}
.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}



.partners-section {
    padding: 60px 0;
    background-color: var(--white);
}

.partners-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px; /* Increased gap for better spacing */
}

.partners-logos img {
    height: 65px;
    width: auto;
    
}



/* tentang */
/* about-custom.css - Styling khusus untuk halaman Tentang Kami */

/* PAGE HEADER SECTION */
.page-header {
    position: relative;
    height: 50vh;
    
    /* 1. Tambahkan gambar latar belakang di sini */
    /* Ganti 'URL_GAMBAR_ANDA.jpg' dengan path gambar yang sebenarnya */
    background-image: url('../assets/batik-bg.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* 2. Buat overlay menjadi gradien transparan */
    /* Dari atas (opacity 0.3) ke bawah (opacity 0.7) */
    background: linear-gradient(to bottom, rgba(23, 171, 107, 0.8), rgba(0, 0, 0, 0.9));
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;

}

.page-header-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;

}

.breadcrumb {
    font-size: 1rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

/* ABOUT INTRODUCTION SECTION */
.about-intro {
    padding: 80px 0;
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.about-highlights {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background-color: var(--light-gray);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.highlight-item span {
    font-weight: 600;
    color: var(--dark-blue);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
/* VISION MISSION SECTION */
.vision-mission {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.vm-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.vm-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.vm-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
}

.vision-card .vm-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-darker));
    color: var(--white);
}

.mission-card .vm-icon {
    background: linear-gradient(135deg, var(--dark-blue), #1a4568);
    color: var(--white);
}

.vm-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-blue);
}

.vm-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.mission-card ul {
    text-align: left;
    padding-left: 20px;
}

.mission-card li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    position: relative;
}

.mission-card li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: -20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vision-mission {
        padding: 60px 0;
    }
    
    .vm-card {
        padding: 30px 20px;
    }
    
    .vm-card h3 {
        font-size: 1.6rem;
    }
    
    .vm-card p,
    .mission-card li {
        font-size: 1rem;
    }
}
/* VALUES SECTION */
.values-section {
    padding: 80px 0;
    background-color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.value-card {
    background-color: var(--light-gray);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-darker));
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-darker));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* LEADERSHIP TEAM SECTION */
.leadership-team {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-info h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--dark-blue);
    font-weight: 600;
}

.team-info span {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 15px;
}

.team-info p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}
/* ================================== */
/* == DESAIN RESPONSIVE (SUDAH FINAL) == */
/* ================================== */

/* ========================================= */
/* == ATURAN FINAL UNTUK TOMBOL MENU (WAJIB) == */
/* ========================================= */

/* 1. Aturan Dasar (Desktop) */
/* Pastikan kedua tombol ini tersembunyi di layar besar */
/* ============================================== */
/* == BAGIAN PENTING UNTUK NAVIGASI - FINAL FIX == */
/* ============================================== */

/* 1. ATURAN DASAR (UNTUK DESKTOP) */
/* Menyembunyikan tombol hamburger & close di layar besar */
.menu-toggle,
.close-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}
.menu-toggle {
    font-size: 1.5rem;
    color: var(--dark-blue);
}
body.menu-open .menu-toggle {
    display: none;
}


/* 2. ATURAN RESPONSIVE (UNTUK TABLET & MOBILE) */
@media (max-width: 992px) {
    /* Mengubah navbar menjadi menu geser (slide-in) */
    .navbar {
        position: fixed;
        top: 0;
        right: -100%; /* Mulai dari luar layar */
        width: 300px;
        max-width: 80%;
        height: 100%;
        background-color: var(--dark-blue);
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 0 20px;
        gap: 0;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        transition: right 0.4s ease-in-out;
        z-index: 2000;
    }

    /* Saat menu aktif, geser ke dalam layar */
    .navbar.active {
        right: 0;
    }

    /* Menampilkan tombol hamburger & close */
    .menu-toggle {
        display: block;
        z-index: 2001;
    }
    .close-menu-btn {
        display: block;
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 1.8rem;
        color: var(--white);
    }

    /* Mengatur ulang link navigasi */
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    .nav-links li {
        width: 100%;
    }
    .nav-links a {
        color: var(--white);
        display: block;
        padding: 15px 25px;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .nav-links a:hover, .nav-links a.active {
        background-color: rgba(255, 255, 255, 0.1);
    }
    .nav-links a::after {
        display: none; /* Sembunyikan garis bawah di mobile */
    }

    /* Mengatur dropdown di mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: transparent;
        border-top: none;
        min-width: 100%;
        padding-left: 15px;
        display: none; /* Sembunyikan secara default */
    }
    .dropdown.active .dropdown-menu {
        display: block; /* Tampilkan saat di-klik */
    }
    .dropdown-menu a {
        color: #e0e0e0;
        font-size: 0.9rem;
        padding: 10px 25px;
    }
    .dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }

    /* Sembunyikan tombol "Apply Now" di header agar tidak aneh */
    .header .apply-now-btn {
        display: none;
    }
    .close-menu-btn {
        top: 20px; /* Sedikit lebih ke bawah */
        right: 25px; /* Sedikit lebih ke dalam */
    }
}



@media (max-width: 768px) {
    .page-header {
        height: 40vh;
    }
    
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .page-header-content p {
        font-size: 1rem;
    }
    
    .about-intro, .vision-mission, .values-section, .leadership-team {
        padding: 60px 0;
    }
    
    .vm-card, .value-card {
        padding: 30px 25px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .highlight-item {
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .page-header-content h1 {
        font-size: 1.8rem;
    }
    
    .vm-card h3 {
        font-size: 1.5rem;
    }
    
    .value-card h4 {
        font-size: 1.2rem;
    }
    
    .team-info h4 {
        font-size: 1.2rem;
    }
}

/* ADDITIONAL ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-content,
.vm-card,
.value-card,
.team-card {
    animation: fadeInUp 0.6s ease-out;
}

/* HOVER EFFECTS */
.value-card:hover::before {
    background: linear-gradient(135deg, var(--dark-blue), #1a4568);
}

.team-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-darker));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover::after {
    opacity: 1;
}










@media (max-width: 768px) {
    .why-choose-us .container, .program-cards, .news-cards, .testimonial-cards, .footer .container {
        grid-template-columns: 1fr;
    }
    .top-bar .container { justify-content: center; text-align: center; }
    .hero-content h2 { font-size: 2.2rem; }
    .header .container { padding: 0 15px; }

    /* Penyesuaian posisi kartu di mobile */
    .featured-programs {
        margin-top: -80px;
    }
}



/* form */
/* ===== FORM STYLES ===== */
.form-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-darker));
    border-radius: 12px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.form-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.form-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.form-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.form-header i {
    margin-right: 12px;
    font-size: 2rem;
    vertical-align: middle;
}

/* Alert Styles */
.alert {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    animation: slideInDown 0.4s ease-out;
}

.alert-error {
    background-color: #fee;
    border: 1px solid #fcc;
    color: #c33;
}

.alert i {
    font-size: 1.5rem;
    margin-top: 2px;
}

.alert-content h4 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.alert-content ul {
    margin: 0;
    padding-left: 20px;
}

.alert-content li {
    margin-bottom: 5px;
    line-height: 1.5;
}

/* Form Card */
.form-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-color-darker), var(--primary-color));
}

.content-form {
    padding: 40px;
}

/* Form Groups */
.form-group {
    margin-bottom: 35px;
    position: relative;
}

.form-group:last-of-type {
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-label i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Input Styles */
.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.form-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(29, 205, 159, 0.1);
    transform: translateY(-2px);
}

.form-input::placeholder {
    color: #a0aec0;
    font-style: italic;
}

/* Textarea Styles */
.textarea-wrapper {
    position: relative;
}

.form-textarea {
    width: 100%;
    min-height: 200px;
    padding: 20px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    resize: vertical;
    line-height: 1.6;
}

.form-textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(29, 205, 159, 0.1);
}

.form-textarea::placeholder {
    color: #a0aec0;
    font-style: italic;
}

.textarea-counter {
    position: absolute;
    bottom: 12px;
    right: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid #e1e8ed;
}

/* File Upload Styles */
.file-upload-wrapper {
    position: relative;
    border: 2px dashed #cbd5e0;
    border-radius: 12px;
    background: #f8fafc;
    transition: all 0.3s ease;
    overflow: hidden;
}

.file-upload-wrapper:hover {
    border-color: var(--primary-color);
    background: rgba(29, 205, 159, 0.02);
}

.file-upload-wrapper.drag-over {
    border-color: var(--primary-color);
    background: rgba(29, 205, 159, 0.05);
    transform: scale(1.02);
}

.file-input {
    display: none;
}

.file-upload-label {
    display: block;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-icon {
    margin-bottom: 15px;
}

.upload-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.file-upload-label:hover .upload-icon i {
    opacity: 1;
    transform: translateY(-5px);
}

.upload-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.upload-text strong {
    font-size: 1.1rem;
    color: var(--dark-blue);
}

.upload-text span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* File Preview */
.file-preview {
    display: none;
    padding: 20px;
    border-top: 1px solid #e1e8ed;
    background: var(--white);
}

.preview-image {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 8px;
}

.preview-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.preview-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.file-name {
    font-weight: 600;
    color: var(--dark-blue);
    font-size: 1rem;
}

.file-size {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Helper Text */
.input-helper {
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.input-helper::before {
    content: '💡';
    font-size: 0.9rem;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    padding-top: 30px;
    border-top: 1px solid #e1e8ed;
    margin-top: 40px;
}

/* Button Styles */
.btn {
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-darker));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(29, 205, 159, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 205, 159, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid #e1e8ed;
}

.btn-secondary:hover {
    background: var(--light-gray);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-card {
    animation: fadeInUp 0.6s ease-out;
}


@media (max-width: 768px) {
    .form-container {
        padding: 0 15px;
    }
    
    .form-header {
        margin-bottom: 25px;
        padding: 25px 20px;
    }
    
    .form-header h2 {
        font-size: 1.6rem;
    }
    
    .form-header p {
        font-size: 1rem;
    }
    
    .content-form {
        padding: 25px 20px;
    }
    
    .form-group {
        margin-bottom: 25px;
    }
    
    .form-input,
    .form-textarea {
        padding: 14px 16px;
    }
    
    .file-upload-label {
        padding: 30px 15px;
    }
    
    .upload-icon i {
        font-size: 2.5rem;
    }
    
    .preview-image {
        flex-direction: column;
        text-align: center;
    }
    
    .preview-image img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .form-header h2 {
        font-size: 1.4rem;
    }
    
    .form-header i {
        font-size: 1.5rem;
    }
    
    .content-form {
        padding: 20px 15px;
    }
    
    .form-label {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* Loading States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn-primary:disabled {
    background: #a0aec0;
    box-shadow: none;
}

/* Focus States for Accessibility */
.btn:focus,
.form-input:focus,
.form-textarea:focus,
.file-upload-label:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .form-input,
    .form-textarea {
        border-width: 3px;
    }
    
    .btn {
        border: 2px solid currentColor;
    }
}



/* ===== NEWS PAGE STYLES ===== */

.news-main-content {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.news-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 992px) {
    .news-layout {
        grid-template-columns: 2fr 1fr; /* 2/3 untuk konten utama, 1/3 untuk sidebar */
    }
}

/* Kolom Berita Utama */
.news-primary-column {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
}

.news-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.news-card-horizontal {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 25px;
    align-items: center;
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 30px;
}

.news-card-horizontal:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-card-img-wrapper {
    width: 150px;
    height: 100px;
    overflow: hidden;
    border-radius: 8px;
}

.news-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card-horizontal:hover .news-card-img-wrapper img {
    transform: scale(1.1);
}

.news-card-content h4 {
    font-size: 1.2rem;
    margin: 5px 0 10px;
    color: var(--dark-blue);
    line-height: 1.4;
}

.news-card-content h4 a {
    color: inherit;
    text-decoration: none;
}
.news-card-content h4 a:hover {
    color: var(--primary-color);
}

.news-card-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.read-more-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
}
.read-more-link i {
    transition: transform 0.3s ease;
}
.read-more-link:hover i {
    transform: translateX(5px);
}


/* Sidebar */
.news-sidebar .sidebar-widget {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 100px; /* Jarak dari atas saat scroll */
}

.sidebar-title {
    font-size: 1.5rem;
    color: var(--dark-blue);
    padding-bottom: 15px;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--primary-color);
    position: relative;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--dark-blue);
}

.popular-news-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popular-news-list li {
    display: flex;
    gap: 15px;
    align-items: center;
}

.popular-news-list img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.popular-news-info a {
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    display: block;
    margin-bottom: 4px;
}

.popular-news-info a:hover {
    color: var(--primary-color);
}

/* Detail Berita */
.news-article-full .article-featured-img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 30px;
}

.article-meta {
    display: flex;
    gap: 25px;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.article-meta i {
    margin-right: 8px;
    color: var(--primary-color);
}

.article-content {
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.article-content h1, .article-content h2, .article-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.article-content p {
    margin-bottom: 20px;
}

.article-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.article-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .news-card-horizontal {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .news-card-img-wrapper {
        width: 100%;
        height: 200px;
        margin: 0 auto;
    }
}
.featured-news-layout {
    display: grid;
    grid-template-columns: 1fr; /* Default 1 kolom untuk mobile */
    gap: 40px;
    margin-top: 30px;
}

/* Layout untuk desktop */
@media (min-width: 992px) {
    .featured-news-layout {
        /* 2 kolom: 60% untuk utama, 40% untuk list */
        grid-template-columns: 3fr 2fr;
    }
}

/* --- Kolom Kiri: Berita Utama --- */
.news-card-featured {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.featured-img-wrapper {
    width: 100%;
    height: 300px; /* Tinggi gambar utama */
    overflow: hidden;
}

.featured-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card-featured:hover .featured-img-wrapper img {
    transform: scale(1.05);
}

.featured-content {
    padding: 25px;
    flex-grow: 1;
}

.featured-content h3 {
    font-size: 1.6rem;
    margin: 10px 0 15px;
    line-height: 1.3;
}
.featured-content h3 a {
    color: var(--dark-blue);
    text-decoration: none;
}
.featured-content h3 a:hover {
    color: var(--primary-color);
}

.featured-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* --- Kolom Kanan: Daftar Berita --- */
.featured-news-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.news-card-list-item {
    display: flex;
    gap: 20px;
    align-items: center;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--light-gray);
}
.news-card-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.list-item-img-wrapper {
    width: 120px; /* Lebar gambar di list */
    height: 80px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
}

.list-item-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list-item-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 5px;
}
.list-item-content h4 a {
    color: var(--text-dark);
    text-decoration: none;
}
.list-item-content h4 a:hover {
    color: var(--primary-color);
}

.list-item-content .news-date {
    font-size: 0.85rem;
}

.admin-container {
        max-width: 1000px;
        margin: 40px auto;
        padding: 20px;
    }

    .admin-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
    }

    .admin-table {
        width: 100%;
        border-collapse: collapse;
    }

    .admin-table th,
    .admin-table td {
        padding: 12px 15px;
        border: 1px solid #ddd;
        text-align: left;
    }

    .admin-table th {
        background-color: var(--dark-blue);
        color: var(--white);
    }

    .admin-table tr:nth-child(even) {
        background-color: #f2f2f2;
    }

    .action-btn {
        display: inline-block;
        padding: 6px 12px;
        margin-right: 5px;
        border-radius: 5px;
        text-decoration: none;
        color: white;
        font-size: 0.9rem;
    }

    .edit-btn {
        background-color: #f2ce30;
    }

    .delete-btn {
        background-color: #e74c3c;
        border: none;
        cursor: pointer;
        font-family: 'Poppins', sans-serif;
    }

    .add-btn {
        background-color: var(--primary-color);
        color: white;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
    }

    .alert-msg {
        padding: 15px;
        background-color: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
        border-radius: 5px;
        margin-bottom: 20px;
    }

    .login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.login-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.login-form h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 600;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.input-group input:focus {
    outline: none;
    border-color: #007bff;
}

button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: linear-gradient(135deg, #0056b3, #007bff);
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 20px;
}


/* ===== DASHBOARD LAYOUT STYLES ===== */

/* ----- Struktur Utama Layout ----- */
/* ===== DASHBOARD LAYOUT STYLES (PERBAIKAN) ===== */

/* ----- Struktur Utama Layout ----- */
.dashboard-layout {
    display: grid;
    /* Ini adalah kuncinya: 260px untuk sidebar, 1fr untuk sisa konten */
    grid-template-columns: 260px 1fr; 
    min-height: 100vh;
}

/* ----- Sidebar Styling (Diperbaiki) ----- */
.dashboard-sidebar {
    background-color: var(--dark-blue);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    
    /* GANTI 'position: fixed' MENJADI 'position: sticky' */
    position: sticky;
    top: 0; /* Agar menempel di bagian atas saat scroll */
    
    height: 100vh; /* Tinggi sidebar sesuai tinggi layar */
    z-index: 1100;

    /* Hapus properti 'width' dan 'transition' yang tidak perlu lagi di sini */
}

/* Biarkan .dashboard-main seperti ini, jangan tambahkan margin-left */
.dashboard-main {
    display: flex;
    flex-direction: column;
    background-color: var(--light-gray); /* Latar belakang area konten */
}

/* Sisa kode sidebar tetap sama (logo, nav, footer, dll) */
.sidebar-logo {
    padding: 0 25px 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
/* ... (sisa kode Anda) ... */

.sidebar-logo .logo .text-wrapper h1 {
    color: var(--white);
    font-size: 1.3rem;
}
.sidebar-logo .logo .text-wrapper p {
    color: rgba(255, 255, 255, 0.6);
}

.sidebar-nav {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px 0;
}

.sidebar-menu-title {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 25px;
    font-weight: 600;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.sidebar-nav .nav-item a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 25px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.sidebar-nav .nav-item a i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.sidebar-nav .nav-item a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-left-color: var(--primary-color);
}

.sidebar-nav .nav-item.active a {
    background-color: var(--primary-color);
    color: var(--white);
    border-left-color: var(--white);
}

.sidebar-footer {
    padding: 20px 25px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ----- Header Dashboard ----- */
.dashboard-header {
    background-color: var(--white);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle-dashboard {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-blue);
    cursor: pointer;
    display: none; /* Hanya tampil di mobile */
}

.header-title {
    font-size: 1.5rem;
    color: var(--dark-blue);
    font-weight: 600;
    margin: 0;
}

.header-right .user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.user-name {
    font-weight: 600;
    color: var(--text-dark);
}

.user-role {
    font-size: 0.85rem;
    color: var(--text-light);
    display: block;
}

/* ----- Konten Utama & Footer Dashboard ----- */
.dashboard-content {
    padding: 30px;
    flex-grow: 1;
}

/* Placeholder untuk konten Anda */
.content-placeholder {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    min-height: 60vh;
}

.dashboard-footer {
    background-color: var(--white);
    padding: 0;
}
.dashboard-footer .footer-bottom {
    border-top: 1px solid var(--border-color);
    margin-top: 0;
    color: var(--text-light);
}

/* ----- Responsive untuk Dashboard ----- *//* =================================== */
/* == STYLE UNTUK NAVIGASI MOBILE == */
/* =================================== */

/* ================================================== */
/* == GAYA DASAR UNTUK TOMBOL MOBILE (PENTING) == */
/* ================================================== */
