 /* =========================================
           SECTION TENTANG KAMI
           ========================================= */
        .pem-tentangkami {
            padding: 100px 0;
            /*background: #ffffff;*/
            overflow: hidden;
        }

        .tentang-grid {
            display: grid;
            grid-template-columns: 1fr 1fr; /* 2 Kolom Sama Rata */
            gap: 60px;
            align-items: center;
        }

        /* Kiri: Konten Teks */
        .tentang-content {
            padding-right: 20px;
        }

        .tentang-badge {
            display: inline-block;
            padding: 8px 16px;
            background: #eff6ff;
            color: #3b82f6;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .tentang-content h2 {
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800;
            color: #1e3a8a;
            line-height: 1.2;
            margin-bottom: 24px;
        }

        .tentang-content h2 span {
            color: #3b82f6;
        }

        .tentang-content p {
            font-size: 16px;
            color: #64748b;
            line-height: 1.7;
            margin-bottom: 32px;
        }

        .tentang-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 32px;
        }

        .tag-pill {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            font-size: 13px;
            font-weight: 600;
            color: #475569;
        }
        
        .tag-pill ion-icon { color: #3b82f6; }

        .btn-tentang {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            background: #1e3a8a;
            color: #ffffff;
            font-weight: 700;
            border-radius: 12px;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 10px 20px rgba(30, 58, 138, 0.2);
        }

        .btn-tentang:hover {
            background: #3b82f6;
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3);
        }

        /* Kanan: Gambar & Floating Cards */
        .tentang-image-wrapper {
            position: relative;
        }

        .tentang-main-img {
            width: 100%;
            max-width: 500px;
            border-radius: 24px;
            /* Placeholder background agar rapi jika gambar belum load */
            background-color: #e2e8f0; 
            aspect-ratio: 3/3;
            object-fit: cover;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            z-index: 1;
            position: relative;
        }

        /* Floating Card 1: Rating (Po Kanan Atas) */
        .float-card-rating {
            position: absolute;
            top: 243px;
                left: 400px;
            background: #ffffff;
            padding: 16px 24px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 2;
            animation: float 3s ease-in-out infinite;
        }

        .rating-score {
            font-size: 24px;
            font-weight: 800;
            color: #1e3a8a;
        }
        .rating-stars {
            color: #fbbf24; /* Warna Bintang Kuning */
            font-size: 14px;
        }
        .rating-label {
            font-size: 12px;
            font-weight: 600;
            color: #64748b;
            display: block;
            margin-top: 2px;
        }

        /* Floating Card 2: Tag (Po Kiri Bawah) */
        .float-card-tag {
            position: absolute;
            bottom: 40px;
            left: -20px;
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: #ffffff;
            padding: 16px 24px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
            z-index: 2;
            animation: float 3s ease-in-out infinite 1.5s; /* Delay animasi */
        }

        .float-card-tag h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 2px;
        }
        .float-card-tag p {
            font-size: 12px;
            opacity: 0.9;
            margin: 0;
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        /* Responsive */
        @media (max-width: 900px) {
            .tentang-grid { grid-template-columns: 1fr; gap: 40px; }
            .tentang-content { padding-right: 0; text-align: center; }
            .tentang-tags { justify-content: center; }
            .tentang-image-wrapper { max-width: 500px; margin: 0 auto; }
            .float-card-rating { right: 0; }
            .float-card-tag { left: 0; }
        }


       /* =========================================
       4. DASHBOARD APLIKASI (SAMA SEPERTI SEBELUMNYA)
       ========================================= */

    .pem-dlhapps {
        padding: 39px 24px;
        margin: 0 auto;
    }

    .dlhapps-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .dlhapps-header h5 {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.2em;
        color: #3b82f6;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .dlhapps-header h5::before,
    .dlhapps-header h5::after {
        content: '';
        width: 20px;
        height: 1.5px;
        background: #bfdbfe;
        border-radius: 2px;
    }

    .dlhapps-header h2 {
        font-size: clamp(24px, 3vw, 34px);
        font-weight: 800;
        color: #1e3a8a;
        line-height: 1.2;
    }

    .dlhapps-header h2 span {
        color: #3b82f6;
    }

    .dlhapps-grid {
        display: grid;
        grid-template-columns: 320px 1fr;
        gap: 0;
        background: #ffffff;
        border-radius: 24px;
        box-shadow: 0 15px 40px rgba(59, 130, 246, 0.08);
        border: 1px solid #eff6ff;
        overflow: hidden;
    }

    .dlh-sidebar {
        background: #f8fafc;
        border-right: 1px solid #eff6ff;
        padding: 24px 0;
        overflow-y: auto;
        max-height: 650px;
        scroll-behavior: smooth;
    }

    .dlh-sidebar-title {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #94a3b8;
        padding: 0 24px 16px;
        border-bottom: 1px solid #e2e8f0;
        margin-bottom: 8px;
    }

    .dlh-list-item {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 16px 24px;
        cursor: pointer;
        transition: all 0.2s ease;
        border-left: 4px solid transparent;
    }

    .dlh-list-item:hover {
        background: #eff6ff;
    }

    .dlh-list-item.active {
        background: #ffffff;
        border-left-color: #3b82f6;
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.06);
    }

    .dlh-list-num {
        width: 28px;
        height: 28px;
        background: #e2e8f0;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 700;
        color: #64748b;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .dlh-list-item.active .dlh-list-num {
        background: #3b82f6;
        color: #ffffff;
        transform: scale(1.1);
    }

    .dlh-list-text h4 {
        font-size: 14px;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 2px;
    }

    .dlh-list-text p {
        font-size: 11px;
        color: #94a3b8;
        margin: 0;
    }

    .dlh-list-item.active .dlh-list-text h4 {
        color: #1e3a8a;
    }

    .dlh-preview {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 50px;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        position: relative;
        overflow: hidden;
        min-height: 500px;
        transition: background-image 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .dlh-preview::before {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        background: rgba(59, 130, 246, 0.05);
        border-radius: 50%;
        top: -20%;
        right: -10%;
        z-index: 0;
    }

    .dlh-preview::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        z-index: 1;
        pointer-events: none;
    }

    .dlh-preview-card {
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.9);
        border-radius: 20px;
        padding: 40px;
        text-align: center;
        max-width: 400px;
        width: 100%;
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.08);
        z-index: 2;
        transition: transform 0.3s ease;
        position: relative;
    }

    .dlh-preview-card:hover {
        transform: translateY(-5px);
    }

    .dlh-preview-card.fade-in {
        animation: fadeInScale 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    @keyframes fadeInScale {
        from {
            opacity: 0;
            transform: translateY(15px) scale(0.98);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .dlh-app-icon {
        width: 80px;
        height: 80px;
        background: #ffffff;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 24px;
        box-shadow: 0 10px 20px rgba(59, 130, 246, 0.15);
        overflow: hidden;
    }

    .dlh-app-icon img {
        width: 50px;
        height: 50px;
        object-fit: contain;
    }

    .dlh-preview-card h3 {
        font-size: 24px;
        font-weight: 800;
        color: #1e3a8a;
        margin-bottom: 12px;
    }

    .dlh-preview-card > p {
        font-size: 14px;
        color: #64748b;
        line-height: 1.6;
        margin-bottom: 32px;
        min-height: 45px;
    }

    .btn-dlh {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px 28px;
        background: #3b82f6;
        color: #ffffff;
        border-radius: 12px;
        font-size: 14px;
        font-weight: 700;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        width: 100%;
        cursor: pointer;
        border: none;
    }

    .btn-dlh:hover {
        background: #2563eb;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    }

    .dlh-socials {
        margin-top: 30px;
        display: flex;
        justify-content: center;
        gap: 12px;
    }

    .dlh-social-icon {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #f1f5f9;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #64748b;
        transition: all 0.2s ease;
        text-decoration: none;
    }

    .dlh-social-icon:hover {
        background: #3b82f6;
        color: #ffffff;
        transform: translateY(-2px);
    }

    @media (max-width: 820px) {
        .dlhapps-grid {
            grid-template-columns: 1fr;
        }
        .dlh-sidebar {
            border-right: none;
            border-bottom: 1px solid #eff6ff;
            max-height: 300px;
        }
        .dlh-preview {
            min-height: 400px;
            padding: 30px;
        }
        .dlh-preview-card {
            padding: 28px 20px;
        }
    }

    @media (max-width: 480px) {
        .dlh-preview-card {
            padding: 20px 16px;
        }
        .dlh-preview-card h3 {
            font-size: 20px;
        }
        .dlh-list-item {
            padding: 12px 16px;
        }
        .dlh-sidebar {
            max-height: 220px;
        }
    }

    /* =========================================
           5. BERITA SECTION
           ========================================= */

        .dlh-berita-section {
            background: #f8fafc;
            padding: 43px 0;
            position: relative;
        }

        .dlh-berita-header {
            text-align: center;
            margin-bottom: 50px;
            margin-left: auto;
            margin-right: auto;
        }

        .dlh-berita-header h2 {
            font-size: clamp(24px, 3vw, 32px);
            font-weight: 800;
            color: #1e3a8a;
            margin-bottom: 12px;
        }

        .dlh-berita-header p {
            color: #64748b;
            font-size: 16px;
        }

        .dlh-berita-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .dlh-berita-card {
            background: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
            border: 1px solid #f1f5f9;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .dlh-berita-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(59, 130, 246, 0.12);
            border-color: #bfdbfe;
        }

        .dlh-berita-img {
            width: 100%;
            height: 200px;
            position: relative;
            overflow: hidden;
        }

        .dlh-berita-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .dlh-berita-card:hover .dlh-berita-img img {
            transform: scale(1.1);
        }

        .dlh-berita-tag {
            position: absolute;
            top: 16px;
            left: 16px;
            background: rgba(255, 255, 255, 0.95);
            padding: 6px 12px;
            border-radius: 30px;
            font-size: 11px;
            font-weight: 700;
            color: #3b82f6;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .dlh-berita-content {
            padding: 24px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .dlh-berita-date {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: #94a3b8;
            margin-bottom: 12px;
        }

        .dlh-berita-content h3 {
            font-size: 18px;
            font-weight: 700;
            color: #1e293b;
            line-height: 1.4;
            margin-bottom: 12px;
            flex-grow: 1;
        }

        .dlh-berita-excerpt {
            font-size: 14px;
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .dlh-berita-link {
            font-size: 14px;
            font-weight: 700;
            color: #3b82f6;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.2s ease;
        }

        .dlh-berita-link:hover {
            gap: 10px;
            color: #1d4ed8;
        }


        /* =========================================
       SECTION MEDIA SOSIAL (THEMA BIRU + OVERLAP + INFINITE)
       ========================================= */
    .pem-mediasocial {
        padding: 80px 0;
        background: #f8fafc;
        overflow: visible; /* Visible agar overlap terlihat */
    }

    .ms-wrapper {
        display: grid;
        grid-template-columns: 300px 1fr; /* Sidebar fixed, Slider sisa */
        gap: 0; /* Gap dihilangkan agar bisa overlap */
        align-items: center; /* Center vertikal */
        position: relative;
    }

    /* --- KIRI: SIDEBAR (OVERLAP) --- */
    .ms-sidebar {
        background: linear-gradient(160deg, #3b82f6, #1e3a8a);
        border-radius: 24px;
        padding: 40px 30px 40px 50px; /* Padding kanan diperbesar */
        color: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: center; /* Center konten secara vertikal */
        position: relative;
        z-index: 2; /* Di atas slider */
        
        /* MAGIC: Margin negatif agar numpuk ke kanan */
        margin-right: -40px; 
        box-shadow: 0 20px 40px rgba(30, 58, 138, 0.3); /* Shadow lebih gelap */
        height: auto;
    }

    /* Dekorasi Background Halus */
    .ms-sidebar::before {
        content: '';
        position: absolute;
        width: 200px;
        height: 200px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        top: -50px;
        right: -50px;
    }
    .ms-sidebar::after {
        content: '';
        position: absolute;
        width: 150px;
        height: 150px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        bottom: -20px;
        left: -20px;
    }

    .ms-sidebar-content {
        position: relative;
        z-index: 2;
    }

    .ms-sidebar h2 {
        font-size: 28px;
        font-weight: 800;
        margin-bottom: 10px;
        line-height: 1.2;
    }
    
    .ms-sidebar p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .ms-social-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .ms-social-item {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 12px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(5px);
        border-radius: 12px;
        text-decoration: none;
        color: white;
        transition: transform 0.3s ease, background 0.3s ease;
        border: 1px solid rgba(255,255,255,0.2);
    }

    .ms-social-item:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateX(5px);
    }

    .ms-icon-box {
        width: 40px;
        height: 40px;
        background: #ffffff;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #3b82f6;
        font-size: 20px;
    }

    .ms-social-text span {
        display: block;
        font-weight: 700;
        font-size: 15px;
    }
    .ms-social-text small {
        font-size: 12px;
        opacity: 0.8;
    }

    /* --- KANAN: SLIDER WRAPPER --- */
    .ms-feed-slider-wrapper {
        overflow: hidden; /* Sembunyikan overflow agar clean */
        width: 100%;
        position: relative;
        z-index: 1; /* Di bawah sidebar */
        
        /* Kompensasi sedikit margin kiri agar kartu pertama tidak tertutup penuh */
        padding-left: 60px; 
    }

    .ms-feed-track {
        display: flex;
        gap: 20px;
        width: max-content; /* Lebar mengikuti konten */
        /* Transisi diatur via JS untuk infinite loop */
    }

    .ms-post-card {
        background: #ffffff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid #f1f5f9;
        display: flex;
        flex-direction: column;
        
        /* Fixed Width agar perhitungan slide mudah */
        width: 260px; 
        flex-shrink: 0;
    }

    .ms-post-card:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        z-index: 5; /* Hover card naik ke atas sidebar */
    }

    .ms-post-header {
        padding: 12px 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .ms-avatar {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: #e2e8f0;
        object-fit: cover;
    }

    .ms-username {
        font-size: 13px;
        font-weight: 700;
        color: #1e293b;
    }
    .ms-username span { color: #3b82f6; font-size: 10px; margin-left: 2px; }

    .ms-post-image {
        width: 100%;
        aspect-ratio: 1/1;
        object-fit: cover;
        background: #f1f5f9;
    }

    .ms-post-body {
        padding: 12px 15px;
    }

    .ms-caption {
        font-size: 12px;
        color: #334155;
        margin-bottom: 12px;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .ms-caption strong { color: #1e293b; }

    .ms-stats {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 10px;
        border-top: 1px solid #f1f5f9;
    }

    .ms-stat-item {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 12px;
        font-weight: 600;
        color: #64748b;
    }
    .ms-stat-item ion-icon { font-size: 16px; transition: color 0.2s; }
    .ms-likes:hover ion-icon { color: #ef4444; }
    .ms-comments:hover ion-icon { color: #3b82f6; }

    /* Responsive */
    @media (max-width: 992px) {
        .ms-wrapper { grid-template-columns: 1fr; }
        .ms-sidebar { 
            margin-right: 0; 
            margin-bottom: 30px; 
            padding-right: 30px;
            padding-left: 30px;
        }
        .ms-feed-slider-wrapper { padding-left: 0; }
        .ms-post-card { width: 300px; } /* Lebih lebar di tablet */
    }
    @media (max-width: 640px) {
        .ms-post-card { width: 85%; } /* Lebar di mobile */
    }