/* Konfigurasi Global */
:root {
    --primary-color: #A8D5BA; /* Hijau Pastel */
    --secondary-color: #FFFFD1; /* Kuning Lembut */
    --accent-color: #2e7d32; /* Hijau Tua */
}

body {
    font-family: 'Quicksand', sans-serif;
    color: #444;
}

/* Navbar */
/* Update Warna Navbar */
.bg-custom-green {
    background-color: #A8D5BA !important; /* Hijau Muda Pastel */
}

/* Mengatur warna link agar lebih kontras di latar hijau muda */
.navbar-light .navbar-nav .nav-link,
.nav-link {
    color: #2e7d32 !important; /* Hijau Tua */
    font-weight: 600;
}

.nav-link:hover {
    color: #ffffff !important; /* Berubah jadi putih saat hover */
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

/* Tombol Hubungi Kami di Navbar agar lebih menonjol */
.nav-item .btn-success {
    background-color: #2e7d32 !important;
    border: none;
}

/* Sesuaikan class nav-link Anda */
.navbar-nav .nav-link {
    padding-left: 10px !important;
    padding-right: 10px !important;
    font-size: 16px; /* Sedikit memperkecil ukuran font jika diperlukan */
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap; /* Mencegah item turun ke bawah */
    align-items: center;
}

.nav-item {
    white-space: nowrap; /* Memaksa teks tetap satu baris */
}

.navbar-zenkids {
    background-color: #0c942a; /* Warna hijau khas Zenkids */
    transition: all 0.3s ease;
}

/* Mengatur warna teks agar putih dan terang */
.navbar-zenkids .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.navbar-zenkids .nav-link:hover {
    color: #ffffff !important;
}


/* Mencegah teks menu membungkus ke bawah */
    .navbar-nav .nav-link {
        white-space: nowrap;
        padding-left: 12px !important;
        padding-right: 12px !important;
        font-size: 0.95rem; /* Perkecil sedikit font jika link terlalu banyak */
    }

    /* Mengurangi margin antar item menu */
    .navbar-nav .nav-item {
        margin-left: 2px;
        margin-right: 2px;
    }

    /* Memastikan container menggunakan lebar maksimal */
    @media (min-width: 992px) {
        .navbar .container {
            max-width: 100% !important;
            padding-left: 30px;
            padding-right: 30px;
        }
    }


    /* 1. Mencegah tulisan menu turun ke bawah di layar Desktop */
.navbar-nav .nav-link {
    white-space: nowrap;
    transition: all 0.3s ease;
}

/* 2. Styling Menu Vertikal (Mobile) */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #00a870; /* Menyamakan warna background saat menu turun */
        margin-top: 15px;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .nav-item .nav-link {
        padding: 12px 20px !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        display: block;
        width: 100%;
    }

    .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    /* Efek saat menu aktif di mobile */
    .nav-link.active {
        background-color: rgba(255,255,255,0.2) !important;
        color: white !important;
        border-radius: 10px;
    }
}

/* 3. Animasi Transisi Halus */
.collapse {
    transition: height 0.4s ease-in-out;
}

/* --- Pengaturan Layar Desktop (Link Tetap Sejajar) --- */
@media (min-width: 992px) {
    .navbar-nav .nav-link {
        white-space: nowrap; /* Mencegah teks turun ke bawah */
        padding-right: 15px !important;
        padding-left: 15px !important;
    }
}

/* --- Pengaturan Layar Mobile (Menu Vertikal) --- */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: #008f5d; /* Warna hijau sedikit lebih gelap agar kontras */
        padding: 20px;
        border-radius: 15px;
        margin-top: 15px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .navbar-nav {
        text-align: left; /* Teks rata kiri untuk daftar vertikal */
    }

    .nav-item {
        border-bottom: 1px solid rgba(255,255,255,0.1); /* Garis pemisah antar menu */
        width: 100%;
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        padding: 12px 0 !important;
        font-size: 1.1rem;
    }
}

.search-container {
    width: 100%;
    max-width: 500px; /* Batas lebar di desktop */
    margin: 10px auto;
}

.search-input-group {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 50px; /* Membuat bentuk kapsul */
    padding: 5px 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.search-input-group:focus-within {
    border-color: #00a870; /* Warna hijau Zenkids saat diklik */
    box-shadow: 0 4px 20px rgba(0, 168, 112, 0.2);
}

.search-icon {
    color: #888;
    margin-right: 10px;
}

.search-input-group input {
    border: none;
    outline: none;
    width: 100%;
    padding: 8px 5px;
    font-size: 14px;
    color: #333;
    background: transparent;
}

.search-button {
    background: #00a870;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-button:hover {
    background: #008f5d;
}

/* Penyesuaian untuk Mobile */
@media (max-width: 768px) {
    .search-container {
        padding: 0 15px;
    }

    .search-input-group {
        padding: 3px 10px;
    }

    .search-button {
        padding: 6px 15px;
        font-size: 13px;
    }
}




/* Carousel Hero */
.carousel-item {
    height: 80vh;
    background-size: cover;
    background-position: center;
}
.carousel-overlay {
    background: rgba(0, 0, 0, 0.4);
    height: 100%;
    display: flex;
    align-items: center;
}

/* Section Colors */
.bg-light-green {
    background-color: #f1f8f4;
}
.bg-light-yellow {
    background-color: #fffdf2;
}

/* Service & Card Effects */
.service-card {
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}
.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.logo-wrap {
    display: inline-block; /* Agar div tidak memakan satu baris penuh */
    margin-right: 1px;    /* Jarak antara logo dan tulisan */
    vertical-align: middle;
}

.navbar-brand {
    display: inline-block;
    vertical-align: middle;
}



/* Gallery Hover Effect
.gallery-item img {
    transition: transform 0.5s ease;
    cursor: pointer;
}
.gallery-item:hover img {
    transform: scale(1.1);
} */

/* Table Styling */
/* Update Header Tabel Kustom */
.custom-thead {
    background-color: #A8D5BA; /* Hijau Muda Pastel */
    color: #2e7d32; /* Teks Hijau Tua agar mudah dibaca */
    border-bottom: 2px solid #91c7a5;
}

.table > :not(caption) > * > * {
    padding: 1rem 0.75rem; /* Membuat baris tabel sedikit lebih lega */
}

.table-hover tbody tr:hover {
    background-color: #f1f8f4; /* Efek hover halus saat baris disentuh */
}


/* Styling Fasilitas dengan Gambar */
.facility-card {
    height: 250px;
    transition: transform 0.3s ease;
}

.facility-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Agar gambar memenuhi area tanpa gepeng */
}

.facility-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7)); /* Gradasi gelap di bawah teks */
    transition: background 0.3s ease;
}

.facility-card:hover {
    transform: scale(1.05); /* Efek zoom sedikit saat kursor lewat */
}

.facility-card:hover .facility-overlay {
    background: linear-gradient(transparent, rgba(46, 125, 50, 0.8)); /* Berubah ke hijau transparan saat hover */
}

/* Update Warna Navbar */
.bg-custom-green {
    background-color: #01962b !important; /* Hijau Muda Pastel */
}

/* Mengatur warna font dasar menjadi putih */
.navbar-light .navbar-nav .nav-link,
.nav-link {
    color: #ffffff !important; /* Font Putih */
    font-weight: 600;
    padding: 8px 20px !important;
    transition: all 0.3s ease;
}

.logo-wrap {
width: 70px; height: 70px; border-radius: 50%;
background: #ffffff; /* ganti warna background */
display: flex; align-items: center; justify-content: center;
}
.logo-wrap img { max-width: 80%; max-height: 80%; }

/* Mengatur Link Aktif dan Hover menjadi warna Hijau */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: #3700cf !important; /* Font Hijau Tua */
    background-color: #ffffff; /* Background putih kecil saat aktif/hover */
    border-radius: 20px;
}

/* Brand/Logo tetap putih atau gelap sesuai selera */
.navbar-brand {
    color: #ffffff !important;
}

/* FAQ Accordion Styling */
.accordion-item {
    border: none;
    border-bottom: 1px solid #eee;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(168, 213, 186, 0.5);
}

.accordion-button:not(.collapsed) {
    background-color: #f1f8f4;
    color: #e6e6e6;
}

/* Badge Custom */
.bg-light-green {
    background-color: #d1e7dd;
}

.bg-light-yellow {
    background-color: #fff3cd;
}

/* Border warna khusus untuk Tips */
.border-success {
    border-color: #A8D5BA !important;
}

.border-warning {
    border-color: #ffda6a !important;
}


/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white !important;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 2px 5px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: all 0.3s ease;
}

.whatsapp-float i {
    font-size: 24px;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    background-color: #128c7e;
    box-shadow: 2px 8px 20px rgba(0,0,0,0.3);
}

/* Animasi Denyut agar lebih menarik perhatian */


/* WHATSAPP */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; display: flex; align-items: center; z-index: 9999; }
.whatsapp-icon {
    width: 60px; height: 60px; background: #25d366; color: white;
    border-radius: 50%; display: flex; justify-content: center; align-items: center;
    font-size: 30px; z-index: 2; animation: pulse 2s infinite;
}
.whatsapp-text {
    background: white; color: #333; padding: 10px 20px; border-radius: 30px 0 0 30px;
    margin-right: -10px; opacity: 0; visibility: hidden; max-width: 0; transition: 0.5s;
    white-space: nowrap; font-weight: 600;
}
.whatsapp-float:hover .whatsapp-text { opacity: 1; visibility: visible; max-width: 300px; margin-right: 5px; }


@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}


.bg-light-green { background-color: #f1f8f4; }

/* Menyembunyikan teks di layar HP kecil agar hanya muncul icon saja */
@media (max-width: 576px) {
    .float-text {
        display: none;
    }
    .whatsapp-float {
        padding: 15px;
        border-radius: 50%;
        bottom: 20px;
        right: 20px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-item {
        height: 60vh;
    }
    .display-4 {
        font-size: 2rem;
    }
}





:root {
    --gold: #c5a059;
    --dark: #121212;
    --white: #ffffff;
}

body { font-family: 'Poppins', sans-serif; background: #f4f4f4; }


.premium-slider {
    position: relative;
    width: 90%;
    max-width: 1300px;
    height: 600px;
    margin: 60px auto;
    background: var(--white);
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    overflow: hidden;
}

.premium-slide {
    display: none;
    height: 100%;
}

.premium-slide.active {
    display: block;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}

/* Bagian Teks */
.content-side {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease forwards;
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 20px;
}

.title span { color: var(--gold); }

.description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 400px;
}

/* Tombol */
.btn-primary {
    background: var(--dark);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
    margin-right: 15px;
}

.btn-primary:hover { background: var(--gold); }

/* Bagian Gambar */
.image-side {
    position: relative;
    overflow: hidden;
}

.img-inner {
    height: 100%;
    transform: scale(1.1);
    transition: 1.5s ease-out;
}

.premium-slide.active .img-inner {
    transform: scale(1);
}

.image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* Kontrol & Progress */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 80px;
    width: 300px;
}

.progress-container {
    height: 2px;
    background: #eee;
    margin-bottom: 15px;
}

.progress-bar {
    height: 100%;
    background: var(--gold);
    width: 0%;
}

/* Animasi */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 968px) {
    .grid-container { grid-template-columns: 1fr; }
    .image-side { display: none; }
}

/* Styling Gambar Layanan */
.service-card img {
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

/* Navigasi Custom untuk Slider Dokter */
.custom-nav {
    width: 5%;
    opacity: 1;
}

.custom-nav:hover {
    opacity: 0.8;
}

#doctorCarousel .carousel-inner {
    padding: 10px 0;
}

/* Memastikan kartu dokter punya tinggi yang sama */
#doctorCarousel .card {
    height: 100%;
    border-bottom: 4px solid var(--primary-color) !important;
}


/* Container Kartu Galeri */
.gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay Teks dan Ikon (Posisi di Bawah) */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 20px;
    color: white;
    text-align: center;
    transition: 0.3s;
}

.gallery-overlay i {
    font-size: 2.5rem;
    display: block;
}

.gallery-overlay h5 {
    font-size: 1rem;
    font-weight: bold;
    margin: 0;
    letter-spacing: 1px;
}

/* Custom Navigasi Panah */
.custom-nav {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    color: #444;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.custom-nav:hover { background: #f0f0f0; color: #000; }
.carousel-control-prev { left: -20px; }
.carousel-control-next { right: -20px; }

/* Custom Indikator Dots */
.custom-indicators {
    bottom: -50px;
}

.custom-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
    background-color: #ccc !important;
    border: none !important;
}

.custom-indicators button.active {
    background-color: #88bd99 !important; /* Warna hijau sesuai navbar */
}

/* Container Slider */
.slider-container {
    position: relative;
    width: 100%;
    height: 80vh; /* Tinggi slider 80% dari layar */
    overflow: hidden; /* Sembunyikan gambar yang di luar area */
}

/* Pembungkus Slide (Flexbox untuk menyusun gambar ke samping) */
.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out; /* Animasi transisi halus */
}

/* Setiap Slide */
.slide {
    min-width: 100%; /* Setiap slide memenuhi lebar container */
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Gambar tetap proporsional */
}

/* Tombol Navigasi */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 20px;
    transition: 0.3s;
    z-index: 10;
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }


/* Hero */
.hero {
    background: url('https://images.unsplash.com/photo-1502740479796-6199bf58a33a?auto=format&fit=crop&q=80&w=1200') center/cover no-repeat;
    height: 400px;
    position: relative;
    color: white;
}

.hero-overlay {
    background: rgba(46, 204, 113, 0.7); /* Warna hijau transparan khas klinik */
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero h1 { font-size: 3rem; margin-bottom: 10px; }

/* Services */
.services { padding: 60px 0; }
.section-title { text-align: center; margin-bottom: 40px; }
.underline { width: 50px; height: 4px; background: #2ecc71; margin: 10px auto; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.service-card:hover { transform: translateY(-10px); }

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content { padding: 25px; text-align: center; }
.card-content h3 { margin-bottom: 15px; color: #2c3e50; }
.card-content p { font-size: 0.9rem; color: #666; margin-bottom: 20px; }

.btn-more {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid #2ecc71;
    color: #2ecc71;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: 0.3s;
}

.btn-more:hover { background: #2ecc71; color: #fff; }

/* Styling Kartu Dokter */
.doctor-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee !important;
}

.doctor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

.doctor-card .img-container {
    height: 250px; /* Atur tinggi foto agar seragam */
    overflow: hidden;
}

.doctor-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Foto akan terpotong rapi memenuhi kontainer */
}

.doctor-card h6 {
    font-size: 1.05rem;
    color: #333;
}

.doctor-card p {
    font-weight: 500;
}


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

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('https://via.placeholder.com/1200x400') no-repeat center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h1 { font-size: 3rem; }

/* About Section */
.about-description { padding: 60px 0; }
.image-box img { width: 100%; border-radius: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.text-box h2 { color: var(--success-color); margin-bottom: 20px; }
.text-box p { line-height: 1.6; color: #02be31; margin-bottom: 20px; }

/* Vision Mission Cards */
.vision-mission { background-color: var(--secondary-color); padding: 60px 0; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.card:hover { transform: translateY(-10px); }
.icon { font-size: 40px; color: var(--primary-color); margin-bottom: 15px; }

/* Button */
.btn-primary {
    background-color: var(--accent-color);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Styling Khusus Visi Misi */
.visi-misi-section {
    padding: 60px 20px;
    background-color: #ffffff;
    color: #333;
    line-height: 1.8;
}

.container-small {
    max-width: 900px;
    margin: 0 auto;
}

/* Section Tagline */
.tagline-section {
    padding: 40px 0;
    background-color: #f9f7f2; /* Warna krem pucat latar belakang */
}

.tagline-card {
    background: linear-gradient(135deg, #00b894 0%, #74b9ff 100%); /* Gradasi Hijau ke Biru */
    border-radius: 30px;
    padding: 60px 40px;
    color: white;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tagline-text {
    font-size: 22px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.tagline-description {
    font-size: 18px;
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto;
}

.main-title {
    color: #2e7d32; /* Hijau Tua */
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
}

.sub-title-green {
    color: #43a047; /* Hijau Terang */
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

.text-content {
    font-size: 18px;
    margin-bottom: 30px;
    color: #444;
}

/* List Misi dengan Penomoran */
.misi-list {
    list-style-type: none; /* Hilangkan default */
    counter-reset: mission-counter; /* Reset counter untuk angka */
    padding-left: 0;
}

.misi-list li {
    counter-increment: mission-counter;
    margin-bottom: 15px;
    font-size: 18px;
    display: flex;
    align-items: flex-start;
}

.misi-list li::before {
    content: counter(mission-counter) ". ";
    font-weight: bold;
    margin-right: 10px;
    min-width: 20px;
}

/* Styling Video agar Responsif */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Rasio 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 20px; /* Sudut melengkung seperti di gambar */
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsif untuk HP */
@media (max-width: 600px) {
    .main-title { font-size: 24px; }
    .text-content, .misi-list li { font-size: 16px; }
}

/* Responsif */
@media (max-width: 768px) {
    .grid { grid-template-columns: 1fr; }
}


/* Warna utama teks */
.welcome-text {
    color: #000000; /* Hitam */
    font-weight: bold;
}

/* Warna khusus untuk kata Zenkids */
.brand-name {
    color: #28a745; /* Hijau (Sesuaikan kodenya dengan hijau logo Anda) */
}

.faq-container {
        max-width: 700px;
        margin: auto;
    }

    .faq-title {
        text-align: center;
        color: #2d5a43;
        margin-bottom: 5px;
        font-weight: bold;
    }

    .faq-subtitle {
        text-align: center;
        color: #666;
        margin-bottom: 30px;
        font-size: 0.9rem;
    }

    /* Wrapper tiap item */
    .faq-item {
        background-color: #fff;
        border: 1px solid #e1eee6;
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }

    /* Style tombol pertanyaan */
    .faq-question {
        width: 100%;
        padding: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: none;
        border: none;
        cursor: pointer;
        outline: none;
        text-align: left;
        color: #333;
        font-size: 1rem;
        font-weight: 600;
        transition: background 0.3s;
    }

    .faq-question:hover {
        background-color: #f9fdfb;
    }

    /* Style saat pertanyaan aktif/dibuka */
    .faq-question.active {
        color: #00a870;
        background-color: #f0fdf4;
    }

    /* Style Jawaban (disembunyikan secara default) */
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out; /* Animasi geser */
        background-color: #fff;
    }

    .faq-content {
        padding: 0 20px 20px 20px;
        color: #555;
        line-height: 1.6;
    }

    /* Animasi Ikon Panah */
    .icon-arrow {
        font-size: 0.8rem;
        transition: transform 0.3s ease;
        color: #999;
    }

    .faq-question.active .icon-arrow {
        transform: rotate(180deg);
        color: #00a870;
    }

    /* Styling Background Utama Section */
.custom-about-bg {
    background-color: #88bd99; /* Hijau sesuai navbar Anda di gambar */
    background-image: linear-gradient(135deg, rgba(255,255,255,0.1) 25%, transparent 25%);
    background-size: 50px 50px;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Card Background untuk Text */
.text-content-card {
    background: rgba(255, 255, 255, 0.95); /* Putih semi-transparan */
    border-radius: 30px;
    border-left: 8px solid #00a870; /* Aksen garis hijau tebal di kiri */
    backdrop-filter: blur(10px); /* Efek blur kaca yang modern */
}

/* Kotak Kecil untuk Ikon */
.icon-box-mini {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.1rem;
}

/* Merapikan gambar logo */
.about-img-wrapper {
    background: white;
    border: 5px solid #ffffff;
    display: inline-block;
}

.about-description p {
    line-height: 1.8;
    color: #555 !important;
}





/* Latar belakang section */
.bg-layanan-zenkids {
    background-color: #f1f9f4; /* Hijau muda halus */
    padding: 80px 0;
}

/* Container kartu gambar */
.card-layanan-img {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card-layanan-img:hover {
    transform: translateY(-10px);
}

.card-layanan-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Label teks di bawah gambar */
.layanan-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(136, 189, 153, 0.9); /* Hijau Zenkids semi-transparan */
    color: white;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.icon-layanan {
    background: #ffc107; /* Warna kuning puzzle */
    color: #333;
    padding: 6px;
    border-radius: 6px;
    margin-right: 10px;
    font-size: 0.8rem;
}

/* 1. Background Section Utama */
.section-layanan {
    background-color: #f1f9f4; /* Warna hijau mint yang sangat lembut */
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2388bd99' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    /* Pola di atas memberikan tekstur ikon plus halus pada background */
    padding-top: 80px;
    padding-bottom: 80px;
    border-radius: 60px 60px 0 0; /* Lengkungan modern di atas section */
}

/* 2. Style Kartu Gambar */
.card-layanan-img {
    position: relative;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.card-layanan-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-layanan-img:hover {
    transform: scale(1.03);
}

/* 3. Label di Bawah Gambar (Sesuai gambar referensi) */
.layanan-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: rgba(136, 189, 153, 0.95); /* Hijau Zenkids semi transparan */
    color: white;
    padding: 10px 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.85rem;
}

.icon-puzzle {
    background-color: #ffc107; /* Warna kuning puzzle sesuai referensi */
    color: #333;
    padding: 5px;
    border-radius: 5px;
    margin-right: 10px;
    font-size: 10px;
}

/* Responsive untuk HP (tampil 2 kolom) */
@media (max-width: 768px) {
    .card-layanan-img {
        height: 200px;
    }
    .layanan-label {
        font-size: 0.75rem;
        padding: 8px 10px;
    }
}

/* Background Section Jadwal */
.section-jadwal-bg {
    background-color: #dfdc4f; /* Hijau pastel sangat lembut */
    background-image: radial-gradient(#88bd99 0.5px, transparent 0.5px);
    background-size: 30px 30px; /* Pola titik-titik halus */
    padding: 80px 0;
}

/* Container Tabel (Warna Putih agar Teks Jelas) */
.jadwal-container {
    background: #ffffff;
    border-radius: 30px;
    border: 1px solid #e1eee6;
}

/* Styling Header Tabel */
.table thead th {
    font-weight: 700;
    color: #2d5a43 !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Styling Baris Tabel */
.border-bottom-custom {
    border-bottom: 1px solid #f0f0f0;
}

.border-bottom-custom:last-child {
    border-bottom: none;
}

/* Badge untuk Jam Praktik */
.badge-jam {
    background-color: #eef9f2;
    color: #00a870;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Hover Effect pada baris tabel */
tr:hover {
    background-color: #fcfdfc;
    transition: 0.2s;
}





/* Styling Background Section Artikel */
.section-artikel {
    /* Menggunakan warna krem/kuning sangat muda agar kontras dengan bagian putih */
    background-color: #fff9f0;
    /* Menambahkan tekstur halus berupa gelombang di bagian bawah */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,224C672,245,768,267,864,250.7C960,235,1056,181,1152,165.3C1248,149,1344,171,1392,181.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    padding-top: 80px;
    padding-bottom: 120px; /* Ruang ekstra untuk hiasan gelombang */
}

/* Mempercantik tampilan kartu di atas background baru */
.section-artikel .card {
    transition: transform 0.3s ease;
}

.section-artikel .card:hover {
    transform: translateY(-10px);
}


/* Styling Metadata Artikel */
.article-meta {
    font-size: 0.75rem; /* Ukuran teks lebih kecil agar rapi */
    letter-spacing: 0.5px;
}

.article-meta i {
    color: #88bd99; /* Warna hijau khas Zenkids untuk ikon */
}

/* Mempercantik Card */
.section-artikel .card {
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0 !important;
}

.section-artikel .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.section-artikel .card-title {
    color: #2d5a43;
    line-height: 1.4;
}

/* Background Section (Tetap menggunakan yang sebelumnya) */
.section-artikel {
    background-color: #fff9f0;
    padding-top: 80px;
    padding-bottom: 100px;
}




/* Artikel */


/* Background Halaman Detail */
.section-detail-bg {
    background-color: #ffffff;
    padding-top: 50px;
}

/* Metadata Styling */
.article-meta-detail img {
    width: 45px;
    height: 45px;
    object-fit: cover;
}

/* Gambar Utama */
.main-article-img img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
}

/* Tipografi Artikel */
.article-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.article-body blockquote.custom-quote {
    background-color: #f1f9f4;
    border-left: 5px solid #88bd99;
    font-style: italic;
    font-size: 1.2rem;
    color: #2d5a43;
    border-radius: 0 15px 15px 0;
}

/* Responsif Mobile */
@media (max-width: 768px) {
    .article-body p {
        font-size: 1rem;
    }
    h1 {
        font-size: 1.8rem;
    }
}


/* Penyesuaian Warna Badge Kategori */
.bg-soft-success {
    background-color: #eef9f2;
    color: #2d5a43;
}

/* Hover effect pada link sidebar */
.list-unstyled a:hover {
    color: #00a870 !important;
    padding-left: 5px;
    transition: all 0.3s;
}

/* Memperbaiki tampilan konten artikel */
.article-content p {
    margin-bottom: 1.5rem;
}

/* Responsif Mobile: Sidebar akan turun ke bawah secara otomatis */
@media (max-width: 991px) {
    .section-detail-bg {
        padding-top: 30px;
    }
}



/* End Artikel */

/* --- PERBAIKAN RESPONSIVE SLIDER HERO --- */

/* Penyesuaian umum untuk semua ukuran layar */
.hero-slider .carousel-item {
    height: 80vh; /* Tinggi di desktop (80% layar) */
    min-height: 400px;
    background-color: #000;
}

.hero-slider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Memastikan gambar memenuhi area tanpa gepeng */
    object-position: center; /* Fokus pada bagian tengah gambar */
}

/* KHUSUS UNTUK SMARTPHONE (Mobile) */
@media (max-width: 768px) {
    .hero-slider .carousel-item {
        height: 50vh; /* Mengurangi tinggi slider di HP agar tidak terlalu panjang */
        min-height: 300px;
    }

    /* Jika ada teks di atas slider, kita kecilkan ukurannya agar tidak menutupi wajah */
    .hero-slider .carousel-caption h1 {
        font-size: 1.5rem;
    }

    .hero-slider .carousel-caption p {
        font-size: 0.9rem;
    }
}





* { box-sizing: border-box; margin: 0; padding: 0; }

.slider-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    transition: opacity 0.5s ease;
}

.slide img {
    width: 100%;
    display: block;
    /* Tinggi gambar menyesuaikan perangkat */
    height: 500px;
    object-fit: cover;
}

/* Navigasi Tombol */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    padding: 16px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    border-radius: 0 3px 3px 0;
    z-index: 10;
}

.next { right: 0; border-radius: 3px 0 0 3px; }
.prev:hover, .next:hover { background-color: rgba(0,0,0,0.8); }

/* Indikator Dots */
.dots {
    text-align: center;
    position: absolute;
    bottom: 20px;
    width: 100%;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
}

.dot.active { background-color: #717171; }

/* --- RESPONSIVE BREAKPOINTS --- */

/* Tablet (max-width: 768px) */
@media screen and (max-width: 768px) {
    .slide img { height: 350px; } /* Tinggi lebih pendek di tablet */
    .prev, .next { padding: 12px; font-size: 14px; }
}

/* Handphone (max-width: 480px) */
@media screen and (max-width: 480px) {
    .slide img { height: 250px; } /* Tinggi menyesuaikan layar kecil */
    .prev, .next { display: none; } /* Opsional: sembunyikan panah di HP agar bersih */
}






