  .job-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: 0.3s ease;
            border: 1px solid #f1f1f1;
        }

        .job-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
        }

        .job-card .feature-icon {
            width: 55px;
            height: 55px;
            border-radius: 12px;
            background: #f3f6ff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #0d6efd;
        }

        .job-badge {
            display: inline-block;
            padding: 6px 12px;
            background: #e8f1ff;
            color: #0d6efd;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
        }

        .job-badge.remote {
            background: #e9fbf1;
            color: #198754;
        }

        .job-badge.freelance {
            background: #fff4e5;
            color: #fd7e14;
        }

        .company-name {
            color: #6c757d;
            font-size: 15px;
            font-weight: 500;
        }

        .job-meta {
            display: flex;
            flex-direction: column;
            gap: 8px;
            font-size: 14px;
            color: #555;
        }

        .job-meta span i {
            color: #0d6efd;
            margin-right: 8px;
        }

        .job-requirements {
            padding-left: 0;
            list-style: none;
            margin-bottom: 20px;
        }

        .job-requirements li {
            margin-bottom: 10px;
            color: #444;
        }

        .job-requirements li i {
            color: #198754;
            margin-right: 8px;
        }

        .job-status {
            font-size: 14px;
        }

        .job-card .btn {
            border-radius: 10px;
            padding: 10px 18px;
            font-weight: 600;
        }

        .services-showcase .service-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
            border: 1px solid #eef1f4;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .services-showcase .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
        }

        .services-showcase .service-image {
            position: relative;
            height: 240px;
            overflow: hidden;
        }

        .services-showcase .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .services-showcase .service-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            border-radius: 999px;
            background: rgba(13, 110, 253, 0.92);
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.02em;
        }

        .services-showcase .service-body {
            padding: 24px;
        }

        .services-showcase .service-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 14px;
        }

        .services-showcase .service-meta span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            border-radius: 999px;
            background: #f5f7fb;
            color: #4d5b68;
            font-size: 13px;
            font-weight: 600;
        }

        .services-showcase .service-description {
            color: #5b6470;
            margin-bottom: 18px;
        }

        .services-showcase .service-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #198754;
            font-weight: 700;
            text-decoration: none;
        }

        .marketplace-cta {
            margin-top: -54px;
            position: relative;
            z-index: 3;
        }

        .marketplace-cta-card {
            background:
                linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 248, 247, 0.98) 100%);
            border: 1px solid rgba(226, 232, 240, 0.92);
            border-radius: 32px;
            box-shadow: 0 24px 54px rgba(15, 23, 42, 0.14);
            padding: 36px 40px;
            overflow: hidden;
            position: relative;
        }

        .marketplace-cta-card::before {
            content: "";
            position: absolute;
            inset: auto -60px -60px auto;
            width: 220px;
            height: 220px;
            background: radial-gradient(circle, rgba(155, 15, 6, 0.12) 0%, rgba(155, 15, 6, 0) 72%);
            pointer-events: none;
        }

        .marketplace-cta-copy {
            position: relative;
            z-index: 1;
        }

        .marketplace-cta-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            border-radius: 999px;
            background: rgba(155, 15, 6, 0.08);
            color: #9b0f06;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .marketplace-cta-copy h3 {
            margin-bottom: 12px;
            color: #111827;
            font-size: clamp(1.9rem, 2.8vw, 2.8rem);
            line-height: 1.1;
        }

        .marketplace-cta-copy p {
            margin-bottom: 0;
            color: #6b7280;
            font-size: 16px;
            line-height: 1.8;
            max-width: 640px;
        }

        .marketplace-cta-actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
            gap: 12px;
            position: relative;
            z-index: 1;
        }

        .marketplace-btn {
            min-width: 210px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            border-radius: 999px;
            padding: 0 26px;
            font-weight: 700;
            font-size: 15px;
            text-decoration: none;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .marketplace-btn:hover {
            transform: translateY(-2px);
        }

        .marketplace-btn.tokopedia {
            background: #03ac0e;
            color: #fff;
            box-shadow: 0 14px 28px rgba(3, 172, 14, 0.22);
        }

        .marketplace-btn.shopee {
            background: #ee4d2d;
            color: #fff;
            box-shadow: 0 14px 28px rgba(238, 77, 45, 0.22);
        }

        @media (max-width: 991.98px) {
            .marketplace-cta {
                margin-top: 0;
            }

            .marketplace-cta-card {
                padding: 28px 22px;
            }

            .marketplace-cta-actions {
                justify-content: flex-start;
                margin-top: 18px;
            }
        }

        @media (max-width: 767.98px) {
            .marketplace-btn {
                width: 100%;
            }
        }

        .clients .clients-swiper .swiper-slide {
            width: 220px;
        }

        .clients .client-item {
            min-height: 120px;
            padding: 1.25rem;
            border-radius: 14px;
        }

        .clients .client-item img {
            max-height: 64px;
            width: 100%;
            object-fit: contain;
        }

        @media (max-width: 991px) {
            .clients .clients-swiper .swiper-slide {
                width: 190px;
            }

            .clients .client-item {
                min-height: 108px;
            }
        }

        @media (max-width: 767px) {
            .clients .clients-swiper .swiper-slide {
                width: 150px;
            }

            .clients .client-item {
                min-height: 96px;
                padding: 1rem;
            }

            .clients .client-item img {
                max-height: 52px;
            }
        }

        /* =========================================
                                                SWIPER & MAIN CONTAINER
                                                ========================================= */
        .hero-slider-section {
            background-color: #ffffff;
            position: relative;
            padding: 60px 0;
            overflow: hidden;
        }

        .myHeroSwiper {
            width: 100%;
            height: 100%;
        }

        .hero-slider-section .swiper-pagination {
            position: relative;
            margin-top: 30px;
        }

        .hero-slider-section .swiper-pagination-bullet {
            background-color: #cccccc;
            opacity: 1;
            width: 10px;
            height: 10px;
            margin: 0 6px !important;
        }

        /* Tambahkan kode di bawah ini untuk dot yang aktif */
        .hero-slider-section .swiper-pagination-bullet-active {
            background-color: #9b0f06 !important;
            /* Warna merah brand Anda */
        }

        .hero-slider-section {
            background-color: #ffffff;
            position: relative;
            /* UBAH PADDING DI SINI: Atas 140px, Kanan-Kiri 0, Bawah 60px */
            padding: 140px 0 60px 0;
            overflow: hidden;
        }


        .hero-title {
            color: #9b0f06;
            line-height: 1.3;
        }

        .marketplace-link {
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .marketplace-link:hover {
            opacity: 0.8;
        }

        .marketplace-divider {
            width: 2px;
            height: 40px;
            background-color: #e0e0e0;
        }

        .feature-badge {
            background-color: #9b0f06;
            color: white;
            width: 100px;
            height: 120px;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-badge:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(11, 81, 156, 0.2);
        }

        .feature-badge i {
            font-size: 2rem;
            margin-bottom: 8px;
        }

        .feature-badge span {
            font-size: 0.75rem;
            font-weight: 600;
            line-height: 1.2;
        }

        .hero-right-img {
            width: min(100%, 520px);
            aspect-ratio: 1 / 1;
            height: auto;
            object-fit: contain;
            object-position: center;
            display: inline-block;
        }

        /* =========================================
                                                HERO LAYOUT 2 (Prestige / Title & Subtitle)
                                                ========================================= */
        .hero2-title {
            color: #0d233a;
            line-height: 1.2;
            font-weight: 800;
        }

        .hero2-subtitle {
            color: #555555;
            line-height: 1.6;
            font-size: 1.1rem;
            max-width: 90%;
        }

        .hero2-link {
            text-decoration: none;
            color: #333333;
            font-size: 0.95rem;
            transition: transform 0.2s ease, opacity 0.2s ease;
        }

        .hero2-link:hover {
            opacity: 0.8;
            color: #333333;
            transform: translateX(5px);
        }

        .hero2-link .icon-circle {
            background-color: #0d233a;
            color: #ffffff;
            border-radius: 50%;
            width: 28px;
            height: 28px;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            font-size: 0.9rem;
        }

        .hero2-image {
            width: min(100%, 520px);
            aspect-ratio: 1 / 1;
            height: auto;
            object-fit: contain;
            object-position: center;
            display: inline-block;
        }
/* =========================================
   MOBILE RESPONSIVE (MAX-WIDTH: 767px)
   ========================================= */
@media (max-width: 767.98px) {
    /* 1. Kurangi padding utama agar section tidak terlalu tinggi di mobile */
    .hero-slider-section {
        padding: 90px 0 40px 0; /* Diperkecil dari 140px 0 60px 0 */
    }

    /* 2. Perkecil ukuran gambar Layout 2 di mobile */
    .hero2-image {
        width: min(100%, 280px); /* Asalnya 520px, kita kurangi jadi 280px */
        margin-top: -20px; /* Opsional: menarik gambar sedikit ke atas */
    }

    /* 3. Sesuaikan ukuran dan margin teks Layout 2 */
    .hero2-title {
        font-size: 2rem; /* Perkecil ukuran font judul */
    }

    .hero2-subtitle {
        font-size: 1rem;
        margin-bottom: 20px !important;
    }
}

/* =========================================
   MOBILE RESPONSIVE (MAX-WIDTH: 767px)
   ========================================= */
@media (max-width: 767.98px) {
    .hero-slider-section .swiper-pagination {
        position: absolute !important;
        top: 15px !important;
        right: 15px !important;
        left: auto !important;
        bottom: auto !important;
        width: auto !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        gap: 8px;

        z-index: 10;
    }

    .hero-slider-section .swiper-pagination .swiper-pagination-bullet {
        margin: 0 !important;
        display: block;
    }

    /* beri ruang supaya konten tidak ketimpa pagination */
    .myHeroSwiper .swiper-wrapper {
        padding-top: 60px;
        padding-right: 40px;
    }
}
        /* =========================================
                                                FIX HEADER TOPBAR KHUSUS HOME
         ========================================= */

        #header-topbar {
            color: #444444 !important;
        }

        /* Memastikan warna link 'Hubungi Kami' tetap merah kontras */
        .header-topbar-link {
            color: #9b0f06 !important;
            font-weight: 700;
        }

        /* Mengubah warna teks menu yang TIDAK aktif menjadi gelap */
        .navmenu a,
        .navmenu a:focus {
            color: #444444 !important;
            /* Warna abu-abu gelap */
            font-weight: 500;
        }

        /* Mengubah warna teks menu saat di-hover atau sedang AKTIF */
        .navmenu a:hover,
        .navmenu .active,
        .navmenu .active:focus {
            color: #9b0f06 !important;
            /* Warna merah brand Anda */
        }

        #header {
            background-color: #ffffff !important;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
        }

        @media (max-width: 1199.98px) {
            body.index-page:not(.scrolled) .header .mobile-nav-toggle {
                color: #111111 !important;
            }

            body.index-page .btn-jasa-pasang-mobile,
            body.index-page .btn-jasa-pasang-mobile:hover,
            body.index-page .btn-jasa-pasang-mobile:focus {
                color: #ffffff !important;
            }
        }

        @media (max-width: 767.98px) {
            .hero-slider-section {
                padding: 104px 0 16px 0;
            }

            .hero-slider-section .swiper-pagination {
                margin-top: 10px;
            }

            .hero-slider-section .container.py-4 {
                padding-top: 0.25rem !important;
                padding-bottom: 0 !important;
            }

            .hero-slider-section .col-lg-7.mb-5,
            .hero-slider-section .col-md-6.mb-5 {
                margin-bottom: 0.8rem !important;
            }

            .hero-title,
            .hero2-title {
                margin-bottom: 0.85rem !important;
            }

            .hero2-subtitle,
            .hero-slider-section p.fs-5 {
                margin-bottom: 0.75rem !important;
            }

            .hero-slider-section .mb-4 {
                margin-bottom: 0.65rem !important;
            }

            .hero-slider-section .mb-5 {
                margin-bottom: 0.7rem !important;
            }

            .hero-right-img,
            .hero2-image {
                width: min(100%, 340px);
            }

            .hero-slider-section .row.align-items-center {
                row-gap: 0.35rem;
            }

            .hero2-subtitle {
                max-width: 100%;
            }

            .hero-slider-section .hero2-link {
                margin-bottom: 0 !important;
            }

            .hero-slider-section .col-lg-7.text-center,
            .hero-slider-section .col-md-6.text-center,
            .hero-slider-section .text-lg-end {
                margin-bottom: 0 !important;
            }

            .feature-badge {
                width: 88px;
                height: 104px;
            }

            .services-showcase.section,
            .portfolio.section,
            .clients.section,
            .blog.section,
            .related-services.section {
                padding-top: 36px;
                padding-bottom: 36px;
            }

            .section-title {
                padding-bottom: 20px;
            }

            .services-showcase .service-image {
                height: 200px;
            }

            .services-showcase .service-body {
                padding: 18px;
            }

            .services-showcase .service-description {
                margin-bottom: 12px;
            }

            .marketplace-cta {
                margin-top: 0;
                padding-top: 6px;
            }

            .marketplace-cta-card {
                padding: 20px 18px;
                border-radius: 24px;
            }

            .marketplace-cta-copy h3 {
                margin-bottom: 10px;
                font-size: 1.55rem;
            }

            .marketplace-cta-actions {
                margin-top: 14px;
                gap: 10px;
            }

            .marketplace-btn {
                min-height: 52px;
            }

            .portfolio .portfolio-filters-wrapper {
                margin-bottom: 16px;
            }

            .blog .post-item .post-content,
            .portfolio .portfolio-card .content {
                padding-top: 14px;
            }
        }
.marketplace-btn.whatsapp {
    background-color: #25D366;
    color: #fff;
    border: 1px solid #25D366;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.marketplace-btn.whatsapp:hover {
    background-color: #128C7E; /* Hijau WhatsApp yang lebih gelap saat di-hover */
    border-color: #128C7E;
    color: #fff;
}