/* Import Google Fonts (Poppins) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root {
    --primary-color: #1a522f;
    /* Hijau Tua */
    --secondary-color: #27ae60;
    /* Hijau Terang */
    --text-dark: #333;
    --text-light: #fff;
    --bg-light: #f4f7f6;
    --tertiary-color: #e6f3ed;
    /* Warna latar belakang ringan untuk bagian tertentu */
}

/* Reset dan Gaya Dasar */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
    scroll-behavior: smooth;
    /* Smooth scrolling */
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header & Navigasi --- */
header {
    background-color: rgba(255, 255, 255, 0.95);
    /* Putih semi-transparan */
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    /* Shadow lebih lembut */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* Izinkan wrapping pada layar kecil */
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo img {
    height: 55px;
    /* Sedikit lebih kecil */
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.school-name-nav {
    color: var(--primary-color);
    font-size: 1.3rem;
    /* Sedikit lebih besar */
    font-weight: 700;
    /* Lebih tebal */
    white-space: nowrap;
    /* Pastikan nama tetap dalam satu baris jika memungkinkan */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin-left: auto;
    /* Pindahkan ke kanan */
}

.nav-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    /* Untuk menandai halaman aktif */
    color: var(--secondary-color);
}

.nav-links a.active::after {
    width: 100%;
}

/* Hamburger Menu untuk Mobile */
.hamburger {
    display: none;
    /* Sembunyikan secara default */
    cursor: pointer;
    font-size: 2rem;
    color: var(--primary-color);
    z-index: 1001;
    /* Pastikan di atas overlay */
}

/* --- Hero Section --- */
.hero-section {
    height: 90vh;
    /* Tinggi sedikit lebih banyak */
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
    /* Transisi lebih halus */
    filter: brightness(0.6);
    /* Sedikit lebih gelap */
}

.slide.active {
    opacity: 1;
}

.hero-content {
    z-index: 1;
    position: relative;
    padding: 0 30px;
    max-width: 800px;
    /* Batasi lebar teks hero */
}

.hero-title {
    font-size: 4rem;
    /* Lebih besar */
    font-weight: 800;
    /* Lebih tebal */
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    /* Tambah shadow */
}

.hero-subtitle {
    font-size: 1.4rem;
    /* Lebih besar */
    font-weight: 400;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    /* Padding lebih besar */
    background-color: var(--secondary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    /* Border radius lebih lembut */
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    background-color: #2ecc71;
    transform: translateY(-2px);
}

/* --- Section Umum --- */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-description {
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 1.15rem;
    color: #555;
    text-align: center;
}

/* --- About Summary Section (Beranda) --- */
.about-summary {
    background-color: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

.about-summary h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-summary p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    color: #666;
}

/* --- Programs Summary Section (Beranda) --- */
.programs-summary {
    background-color: var(--tertiary-color);
    padding: 80px 0;
}

.programs-summary .section-title {
    color: var(--primary-color);
}

.programs-summary .section-title::after {
    background-color: var(--secondary-color);
}

.program-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 40px;
}

.program-cards .card {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-cards .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.program-cards .card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.program-cards .card p {
    font-size: 1rem;
    color: #555;
}

/* --- About Page --- */
.content-section {
    padding: 60px 0;
    background-color: #fff;
}

.content-section h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.content-section .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #444;
    margin-bottom: 1.5rem;
}

.content-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.content-section ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
    color: #555;
}

.content-section ul li::before {
    content: '✓';
    /* Tanda centang */
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.profile-section {
    padding: 60px 0;
    background-color: var(--tertiary-color);
    /* Latar belakang berbeda */
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 50px;
}

.profile-card {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.profile-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    /* Warna ikon profil */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.profile-icon svg {
    width: 35px;
    height: 35px;
    color: var(--text-light);
    /* Warna SVG di dalam lingkaran */
    stroke-width: 2;
}

.profile-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.profile-card p {
    font-size: 1.0rem;
    color: #555;
    flex-grow: 1;
    /* Agar paragraf mengisi ruang yang tersedia */
}

.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 3rem;
    /* Sesuaikan sesuai kebutuhan */
}


/* --- Programs Page (Full Section) --- */
.programs-full-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.program-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.program-card-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    /* Untuk menata ikon dan teks secara vertikal */
    flex-direction: column;
    align-items: center;
}

.program-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.program-icon {
    margin-bottom: 1.5rem;
    /* color: var(--secondary-color); */
    /* Ini diubah */
    width: 70px;
    /* Ukuran ikon lebih besar */
    height: 70px;
    background-color: var(--secondary-color);
    /* Latar belakang ikon */
    border-radius: 50%;
    /* Bentuk lingkaran */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* Shadow pada ikon */
}

/* Styling baru untuk gambar program */
.program-icon img {
    width: 80px;
    /* Sesuaikan ukuran gambar */
    height: 80px;
    /* Sesuaikan ukuran gambar */
    object-fit: contain;
    /* Pastikan gambar tidak terdistorsi */
    margin-bottom: 15px;
    border-radius: 50%;
    /* Jika Anda ingin gambar berbentuk lingkaran */
    /* Tambahkan bayangan atau efek lain jika diinginkan */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    /* Sedikit padding agar gambar tidak terlalu menempel */
    background-color: #fff;
    /* Latar belakang putih jika gambar transparan */
}

/* Styling untuk gambar di bagian summary (jika ditambahkan) */
.program-summary-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}

.program-card-item h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.program-card-item p {
    font-size: 1rem;
    color: #555;
}

/* --- Galeri --- */
.gallery-section {
    padding: 80px 0;
    background-color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* Min lebar item lebih fleksibel */
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: 280px;
    /* Tinggi gambar lebih konsisten */
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 82, 47, 0.75);
    /* Warna hijau tua semi-transparan lebih gelap */
    color: var(--text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    font-size: 1.2rem;
    font-weight: 600;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
    opacity: 1;
}

/* --- Kontak --- */
.contact-section {
    padding: 80px 0;
    background-color: var(--tertiary-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    /* Form sedikit lebih lebar */
    gap: 40px;
    align-items: flex-start;
}

.contact-info {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: #555;
}

.contact-form-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    /* Padding lebih besar */
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.2);
    /* Ring focus */
    outline: none;
}

.contact-form .btn {
    width: auto;
    /* Agar tombol tidak melebar penuh */
    display: block;
    /* Agar tetap di baris baru */
    margin-top: 20px;
    padding: 12px 30px;
    font-size: 1.1rem;
}

/* --- Footer --- */
footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 2.5rem 0;
    /* Padding lebih besar */
    text-align: center;
    font-size: 0.95rem;
}

/* --- Animasi --- */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards cubic-bezier(0.33, 1, 0.68, 1);
    animation-delay: 0.3s;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 1s forwards cubic-bezier(0.33, 1, 0.68, 1);
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    /* Jarak geser lebih pendek */
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    /* Transisi lebih cepat */
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Page Header (untuk halaman selain Beranda) --- */
.page-header {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 100px 0 60px;
    /* Padding lebih besar */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: 3.8rem;
    /* Lebih besar */
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.3rem;
    /* Lebih besar */
    margin-top: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

/* --- Gaya untuk Halaman PSDB --- */
.psdb-section {
    background-color: var(--bg-light);
    /* Latar belakang sedikit abu-abu */
    text-align: center;
}

.psdb-content-wrapper {
    display: flex;
    flex-direction: row;
    /* Default: row untuk desktop */
    align-items: center;
    gap: 60px;
    /* Jarak antar gambar dan teks */
    max-width: 1000px;
    /* Batasi lebar total konten */
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Shadow yang lebih halus */
}

.psdb-image-container {
    flex: 1;
    /* Ambil proporsi lebar */
    min-width: 300px;
    /* Lebar minimum agar tidak terlalu kecil */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    /* Shadow gambar */
}

.psdb-banner-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.psdb-image-container:hover .psdb-banner-image {
    transform: scale(1.05);
    /* Efek zoom saat hover */
}

.psdb-text {
    flex: 1.5;
    /* Teks ambil proporsi lebih besar */
    text-align: left;
    /* Teks rata kiri di desktop */
}

.psdb-text .section-description {
    margin-left: 0;
    /* Override center margin */
    margin-right: 0;
    /* Override center margin */
    margin-bottom: 40px;
    color: #444;
    text-align: left;
    /* Teks rata kiri */
    font-size: 1.1rem;
    line-height: 1.8;
}

.btn-whatsapp-psdb {
    background-color: #25D366;
    /* Warna hijau WhatsApp */
    color: var(--text-light);
    font-size: 1.2rem;
    padding: 15px 35px;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-flex;
    /* Agar ikon bisa menyatu */
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.btn-whatsapp-psdb:hover {
    background-color: #1DA851;
    /* Warna hijau WhatsApp lebih gelap saat hover */
    transform: translateY(-3px);
}

.btn-whatsapp-psdb svg {
    width: 28px;
    /* Ukuran ikon lebih besar */
    height: 28px;
    fill: var(--text-light);
    /* Isi ikon dengan warna putih */
}


/* --- Responsive Design --- */
@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }

    /* Header & Navigasi */
    .school-name-nav {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    /* Hero */
    .hero-title {
        font-size: 3.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 2.5rem;
    }

    .section-description {
        font-size: 1.05rem;
    }

    /* Programs Grid */
    .program-cards,
    .program-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    /* Contact Grid */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form-container {
        padding: 25px;
    }

    .contact-form .btn {
        width: 100%;
    }

    /* Page Header */
    .page-header h1 {
        font-size: 3rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    /* PSDB Responsive */
    .psdb-content-wrapper {
        flex-direction: column;
        /* Ubah ke kolom untuk tablet */
        gap: 40px;
        padding: 30px;
    }

    .psdb-image-container {
        width: 80%;
        /* Lebar gambar di tablet */
        max-width: 500px;
    }

    .psdb-text {
        text-align: center;
        /* Teks rata tengah di tablet */
    }

    .psdb-text .section-description {
        text-align: center;
        /* Teks rata tengah di tablet */
        margin-left: auto;
        margin-right: auto;
    }

    .btn-whatsapp-psdb {
        font-size: 1.1rem;
        padding: 12px 30px;
    }
}

@media (max-width: 768px) {

    /* Header & Navigasi - Mobile */
    nav {
        flex-wrap: nowrap;
        /* Kembali ke nowrap untuk navigasi utama */
        justify-content: space-between;
        /* Pastikan logo dan hamburger terpisah */
        padding: 0.8rem 20px;
        /* Padding header di mobile */
    }

    .nav-links {
        display: none;
        /* Sembunyikan menu desktop */
        flex-direction: column;
        width: 100%;
        background-color: var(--primary-color);
        /* Latar belakang menu mobile */
        position: absolute;
        top: 75px;
        /* Tinggi header */
        left: 0;
        padding: 20px 0;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
        z-index: 999;
        transform: translateY(-100%);
        /* Sembunyikan di atas */
        transition: transform 0.4s ease-out;
    }

    .nav-links.active {
        display: flex;
        /* Tampilkan saat aktif */
        transform: translateY(0);
        /* Geser ke bawah */
    }

    .nav-links li {
        text-align: center;
        margin: 10px 0;
    }

    .nav-links a {
        color: var(--text-light);
        /* Warna teks putih untuk menu mobile */
        font-size: 1.2rem;
    }

    .nav-links a:hover {
        color: var(--secondary-color);
    }

    .nav-links a::after {
        /* Sembunyikan underline di mobile menu */
        display: none;
    }

    .hamburger {
        display: block;
        /* Tampilkan hamburger menu */
    }

    .logo img {
        height: 50px;
    }

    .school-name-nav {
        font-size: 1rem;
    }

    /* Hero */
    .hero-section {
        height: 70vh;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 1rem;
    }

    /* Section Padding */
    .section-padding {
        padding: 60px 0;
    }

    /* Section Titles */
    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    /* About Summary */
    .about-summary p {
        font-size: 1rem;
    }

    /* --- Programs Page (Full Section) --- */
    .programs-full-section {
        padding: 80px 0;
        background-color: var(--bg-light);
    }

    .program-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
    }

    .program-card-item {
        background-color: #fff;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        /* Untuk menata ikon dan teks secara vertikal */
        flex-direction: column;
        align-items: center;
    }

    .program-card-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    }

    .program-icon {
        margin-bottom: 1.5rem;
        /* color: var(--secondary-color); */
        /* Ini diubah */
        width: 70px;
        /* Ukuran ikon lebih besar */
        height: 70px;
        background-color: var(--secondary-color);
        /* Latar belakang ikon */
        border-radius: 50%;
        /* Bentuk lingkaran */
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        /* Shadow pada ikon */
    }

    /* Styling baru untuk gambar program */
    .program-icon img {
        width: 80px;
        /* Sesuaikan ukuran gambar */
        height: 80px;
        /* Sesuaikan ukuran gambar */
        object-fit: contain;
        /* Pastikan gambar tidak terdistorsi */
        margin-bottom: 15px;
        border-radius: 50%;
        /* Jika Anda ingin gambar berbentuk lingkaran */
        /* Tambahkan bayangan atau efek lain jika diinginkan */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 10px;
        /* Sedikit padding agar gambar tidak terlalu menempel */
        background-color: #fff;
        /* Latar belakang putih jika gambar transparan */
    }

    /* Styling untuk gambar di bagian summary (jika ditambahkan) */
    .program-summary-icon img {
        width: 60px;
        height: 60px;
        object-fit: contain;
        margin-bottom: 10px;
    }

    .program-card-item h3 {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 1rem;
    }

    .program-card-item p {
        font-size: 1rem;
        color: #555;
    }

      /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-image {
        height: 250px;
    }

    .gallery-overlay p {
        font-size: 1rem;
    }

    /* --- Kontak --- */
    .contact-section {
        padding: 80px 0;
        background-color: var(--tertiary-color);
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 2fr;
        /* Form sedikit lebih lebar */
        gap: 40px;
        align-items: flex-start;
    }

    .contact-info {
        background-color: #fff;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    }

    .contact-info h3 {
        color: var(--primary-color);
        margin-bottom: 20px;
        font-size: 1.8rem;
    }

    /* Gaya baru untuk daftar detail kontak */
    .contact-details-list {
        list-style: none;
        padding: 0;
        margin-bottom: 30px;
        /* Jarak sebelum social media atau peta */
    }

    .contact-details-list li {
        display: flex;
        /* Menggunakan flexbox untuk ikon dan teks */
        align-items: flex-start;
        /* Rata atas jika teks panjang */
        margin-bottom: 15px;
        font-size: 1.05rem;
        color: #555;
    }

    .contact-details-list li:last-child {
        margin-bottom: 0;
        /* Tidak ada margin bawah pada item terakhir */
    }

    .contact-details-list .icon-wrapper {
        flex-shrink: 0;
        /* Jangan biarkan ikon mengecil */
        width: 30px;
        /* Ukuran wrapper ikon */
        height: 30px;
        /* Ukuran wrapper ikon */
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 15px;
        color: var(--secondary-color);
        /* Warna ikon */
        background-color: var(--tertiary-color);
        /* Latar belakang ikon */
        border-radius: 50%;
        /* Bentuk lingkaran */
    }

    .contact-details-list .icon-wrapper svg {
        width: 18px;
        /* Ukuran SVG ikon */
        height: 18px;
        /* Ukuran SVG ikon */
        stroke-width: 2.5;
        /* Ketebalan garis ikon */
    }

    .contact-details-list .contact-link {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .contact-details-list .contact-link:hover {
        color: var(--secondary-color);
        text-decoration: underline;
    }

    /* Gaya baru untuk social media links */
    .social-media-links {
        margin-top: 30px;
        border-top: 1px solid #eee;
        padding-top: 25px;
        margin-bottom: 40px;
        /* Jarak sebelum peta */
        text-align: left;
    }

    .social-media-links h3 {
        margin-bottom: 15px;
        font-size: 1.8rem;
        color: var(--primary-color);
    }

    .social-icon-link {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background-color: var(--primary-color);
        /* Warna latar ikon */
        color: var(--text-light);
        /* Warna ikon */
        margin-right: 15px;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .social-icon-link:hover {
        background-color: var(--secondary-color);
        /* Warna hover */
        transform: translateY(-3px);
    }

    .social-icon-link svg {
        width: 24px;
        height: 24px;
        stroke-width: 2;
    }

    /* Gaya untuk peta di halaman kontak */
    .contact-map {
        margin-top: 40px;
        /* Jarak antara social media dan peta */
        border-top: 1px solid #eee;
        /* Garis pemisah */
        padding-top: 30px;
    }

    .contact-map h3 {
        margin-bottom: 20px;
        font-size: 1.8rem;
        color: var(--primary-color);
    }

    .contact-map iframe {
        width: 100%;
        border-radius: 10px;
        overflow: hidden;
        /* Pastikan border-radius diterapkan */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        /* Shadow untuk peta */
    }


    .contact-form-container {
        background-color: #fff;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    }

    .contact-form h3 {
        color: var(--primary-color);
        margin-bottom: 25px;
        font-size: 1.8rem;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #444;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-family: 'Poppins', sans-serif;
        font-size: 1rem;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        border-color: var(--secondary-color);
        box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.2);
        outline: none;
    }

    .contact-form .btn {
        width: auto;
        display: block;
        margin-top: 20px;
        padding: 12px 30px;
        font-size: 1.1rem;
    }

    /* ... (Sisa kode CSS, termasuk media queries) ... */

    /* Responsive Design */
    @media (max-width: 992px) {
        /* ... (CSS sebelumnya) ... */

        /* Contact Grid */
        .contact-grid {
            grid-template-columns: 1fr;
            /* Satu kolom untuk tablet/mobile */
        }

        /* contact-map di mobile, mungkin perlu penyesuaian tinggi iframe */
        .contact-map iframe {
            height: 250px;
            /* Sesuaikan tinggi peta di perangkat yang lebih kecil */
        }

        .contact-details-list li {
            font-size: 1rem;
        }

        .contact-info h3,
        .social-media-links h3,
        .contact-map h3 {
            font-size: 1.6rem;
            text-align: center;
            /* Judul info kontak & social media rata tengah */
        }

        .contact-details-list {
            margin-bottom: 25px;
        }

        .social-media-links {
            text-align: center;
            /* Ikon social media rata tengah */
            padding-top: 20px;
            margin-bottom: 30px;
        }
    }

    /* Menghilangkan titik (bullet points) pada daftar informasi kontak */
    .contact-info-list {
        list-style-type: none;
        /* Ini akan menghilangkan titik-titik */
        padding-left: 0;
        /* Menghilangkan indentasi default pada daftar */
        margin: 0;
        /* Mengatur margin menjadi 0 */
    }

    /* Penyesuaian untuk setiap item daftar agar ikon dan teks sejajar */
    .contact-info-list li {
        display: flex;
        /* Menggunakan flexbox untuk penataan item */
        align-items: flex-start;
        /* Menjaga ikon sejajar dengan baris pertama teks */
        margin-bottom: 15px;
        /* Jarak antar setiap item informasi kontak */
        line-height: 1.5;
        /* Sedikit spasi baris untuk keterbacaan */
    }

    /* Styling untuk wrapper ikon agar ada jarak antara ikon dan teks */
    .contact-info-list li .icon-wrapper {
        margin-right: 15px;
        /* Jarak antara ikon dan teks */
        flex-shrink: 0;
        /* Mencegah ikon menyusut */
        color: var(--primary-color, #28a745);
        /* Ganti dengan warna utama Anda jika ada */
    }

    /* Styling untuk SVG di dalam icon-wrapper */
    .contact-info-list li .icon-wrapper svg {
        width: 24px;
        height: 24px;
        vertical-align: middle;
        /* Memastikan ikon sejajar secara vertikal */
    }

    /* Styling untuk teks yang mengikuti ikon */
    .contact-info-list li span,
    .contact-info-list li a.contact-link {
        font-size: 1rem;
        /* Ukuran font yang konsisten */
        color: #333;
        /* Warna teks */
        text-decoration: none;
        /* Menghilangkan garis bawah pada tautan jika tidak diinginkan */
    }

    .contact-info-list li strong {
        color: #111;
        /* Warna lebih gelap untuk label tebal */
        margin-right: 5px;
        /* Jarak antara label dan nilai */
    }

    /* Optional: Styling untuk tautan di dalam daftar */
    .contact-info-list li a.contact-link {
        color: var(--secondary-color, #007bff);
        /* Warna tautan */
        transition: color 0.3s ease;
    }

    .contact-info-list li a.contact-link:hover {
        color: var(--primary-color, #28a745);
        /* Warna tautan saat hover */
    }

    @media (max-width: 768px) {
        /* ... (CSS sebelumnya) ... */

        /* contact-map di mobile, mungkin perlu penyesuaian tinggi iframe */
        .contact-map iframe {
            height: 200px;
            /* Sesuaikan tinggi peta di perangkat yang lebih kecil */
        }

        .contact-info h3,
        .social-media-links h3,
        .contact-map h3 {
            font-size: 1.5rem;
        }

        .contact-details-list li {
            font-size: 0.95rem;
            margin-bottom: 12px;
        }

        .contact-details-list .icon-wrapper {
            width: 28px;
            height: 28px;
            margin-right: 12px;
        }

        .contact-details-list .icon-wrapper svg {
            width: 16px;
            height: 16px;
        }

        .social-icon-link {
            width: 40px;
            height: 40px;
            margin-right: 10px;
        }

        .social-icon-link svg {
            width: 22px;
            height: 22px;
        }
    }

    @media (max-width: 480px) {
        /* ... (CSS sebelumnya) ... */

        .contact-info h3,
        .social-media-links h3,
        .contact-map h3 {
            font-size: 1.4rem;
        }

        .contact-details li {
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .contact-details .icon-wrapper {
            width: 26px;
            height: 26px;
            margin-right: 10px;
        }

        .social-icon-link {
            width: 36px;
            height: 36px;
            margin-right: 8px;
        }

        .social-icon-link svg {
            width: 20px;
            height: 20px;
        }
    }
}