        .nav-wbs {
            background: linear-gradient(315deg, #0d6efd, #6610f2);
            filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#00070F", endColorstr="#0617AC", GradientType=1);
        }

        section {
            scroll-margin-top: 80px;
            /* sesuaikan dengan tinggi navbar kamu */
        }

        html {
            scroll-behavior: smooth;

            input {
                margin: 0;
            }
        }
        

        label.required::after {
            content: " *";
            color: red;
            font-weight: 600;
        }
        .about-page {
            background: linear-gradient(315deg, #0d6efd, #6610f2);
            transition: all 0.5s ease; /* Pindahkan transition ke sini agar animasi jalan saat hover masuk & keluar */
        }

        .form-area-pelaporan {
            border-radius: 2rem;
        }

        .accordion-item {
            border: none;
            border-radius: 12px;
            /* biar rounded */
            overflow: hidden;
            /* biar sudut ikut melengkung */
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            /* opsional, kasih shadow */
        }

        /* Biar button header juga ikut rounded */
        .accordion-button {
            border-top-left-radius: 12px !important;
            border-top-right-radius: 12px !important;
            box-shadow: none;
            /* hilangin shadow pas active */
        }

        /* Hilangin border pas button di collapse */
        .accordion-button:not(.collapsed) {
            /* warna pas aktif */
            color: #000;
        }

        .criteria {
            display: block;
            border-radius: 1rem;
            text-decoration: none;
            transition: all 0.4s ease;
        }

        .form-pelaporan {
            border-radius: 2rem;
            padding: 20px;
            font-size: 15px;
            background-color: #ffffff !important;
        }

        .area-steps {
            border-radius: 2rem;
            padding: 20px;
            background: linear-gradient(315deg, #0d6efd, #6610f2);
            transition: all 0.5s ease; /* Pindahkan transition ke sini agar animasi jalan saat hover masuk & keluar */
        }

        .area-steps:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            transform: translateY(-5px);
            background: linear-gradient(315deg, #6610f2, #0d6efd); /* Hilangkan koma berlebih */
        }

        .custom-link {
            display: block;
            border-radius: 1rem;
            /* rounded */
            background: linear-gradient(45deg, hsla(212, 100%, 3%, 1) 20%, hsla(234, 93%, 35%, 1) 100%);
            color: #fff;
            text-decoration: none;
            transition: all 0.4s ease;
        }

        .custom-link:hover {
            background: linear-gradient(315deg, #0d6efd, #6610f2);
            /* arah gradasi dibalik */
            transform: translateY(-3px);
            color: #fff;
            /* efek hover naik sedikit */
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        /* Hide radio */
        .price-card input[type="radio"] {
            display: none;
        }

        /* Hover effect */
        .price-card .card {
            transition: all 0.3s ease;
        }

        .price-card:hover .card {
            transform: translateY(-5px);
            border-color: #0d6efd;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
        }

        /* Selected state */
        .price-card input[type="radio"]:checked+.card {
            border: 2px dashed #0d6efd;
            border-style: dashed;
            background: linear-gradient(135deg, #0d6efd, #2d92da);
            color: white;
        }

        .price-card input[type="radio"]:checked+.card h2,
        .price-card input[type="radio"]:checked+.card h5,
        .price-card input[type="radio"]:checked+.card li {
            color: white;
        }

        .price-card input[type="radio"]:checked+.card button {
            background: white;
            color: #0d6efd;
            border: none;
            font-weight: bold;
        }

        .price-card input[type="radio"]:checked+.card h4 {
            color: #ffffff !important;
            /* kuning */
        }

        /* Card style untuk checkbox */
        .form-check-button {
            border: 2px dashed #ccc;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: #f8f9fa;
            font-size: 0.95rem;
        }

        /* Icon box */
        .icon-box {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            border: 2px solid #ccc;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            background: white;
            color: transparent;
        }

        /* Hover effect */
        .check-card:hover {
            border-color: #0d6efd;
            background: #f1f5ff;
        }

        .form-check-input:checked+.form-check-label .check-card .icon-box {
            border-color: #0d6efd;
            background: white;
            color: #0d6efd;
        }

        .custom-check {
            display: flex;
            align-items: center;
            cursor: pointer;
            font-weight: 500;
            margin-bottom: 10px;
            user-select: none;
        }

        /* sembunyikan checkbox bawaan */
        .custom-check input {
            display: none;
        }

        /* kotak custom */
        .checkmark {
            width: 20px;
            height: 20px;
            border: 2px solid #0d6efd;
            border-radius: 5px;
            margin-right: 10px;
            position: relative;
            transition: all 0.2s ease-in-out;
        }

        /* tanda centang */
        .checkmark::after {
            content: "";
            position: absolute;
            left: 5px;
            top: 1px;
            width: 5px;
            height: 10px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
            opacity: 0;
            transition: opacity 0.2s ease-in-out;
        }

        /* efek saat dicentang */
        .custom-check input:checked+.checkmark {
            background-color: #0d6efd;
            border-color: #0d6efd;
        }

        .custom-check input:checked+.checkmark::after {
            opacity: 1;
        }
        .select2-container .select2-selection--multiple {
            border: 1px solid #ced4da;
            border-radius: 2rem;
            padding: 20px;
            font-size: 15px;
            box-shadow: none;
            width: 100%;
        }

        .select2-container--default.select2-container--focus .select2-selection--multiple {
            border-color: #86b7fe;
            box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, .25);
        }

        /* Tag item yang terpilih */
        .select2-selection__choice {
            background-color: #0d6efd !important;
            /* biru bootstrap */
            color: white !important;
            border: none !important;
            border-radius: 4px !important;
            padding: 2px 15px !important;
            margin-top: 3px !important;
        }

        /* Tombol close di tag */
        .select2-selection__choice__remove {
            color: white !important;
            margin-right: 4px;
        }

        /* Placeholder */
        .select2-selection__placeholder {
            color: #6c757d !important;
        }

        /* Dropdown styling */
        .select2-dropdown {
            border: 1px solid #ced4da;
            border-radius: 0.375rem;
            font-size: 14px;
        }

        .select2-results__option--highlighted {
            background-color: #0d6efd !important;
            color: #fff !important;
        }
        .timeline {
      display: flex;
      gap: 1.5rem;
      align-items: center;
      overflow-x: auto;
      padding: 1rem;
      white-space: nowrap;
    }

    /* Single step */
    .timeline-step {
      flex: 0 0 auto;
      width: 220px;
      min-width: 180px;
      position: relative;
      text-align: center;
      cursor: pointer;
    }

    /* Circle icon box */
    .timeline-step .step-icon {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 2px dashed var(--bs-secondary);
      background: white;
      color: var(--bs-secondary);
      transition: all .25s ease;
      margin-bottom: .5rem;
      font-size: 1.25rem;
    }

    /* Label */
    .timeline-step .step-title {
      display: block;
      font-weight: 600;
      margin-bottom: .25rem;
      color: #212529;
    }
    .timeline-step .step-desc {
      font-size: .9rem;
      color: #6c757d;
    }

    /* Connector line between items (horizontal) */
    .timeline-step::after {
      content: "";
      position: absolute;
      top: 28px; /* center line with icon */
      right: -0.75rem;
      width: 48px;
      height: 3px;
      background: linear-gradient(90deg, rgba(0,0,0,0.08), rgba(0,0,0,0.04));
      z-index: 0;
    }
    /* last item remove connector */
    .timeline-step:last-child::after { display: none; }

    /* Active state */
    .timeline-step.active .step-icon {
      background: linear-gradient(135deg, #0d6efd, #6c63ff);
      border-style: solid;
      border-color: rgba(255,255,255,0.25);
      color: white;
      transform: translateY(-6px) scale(1.04);
      box-shadow: 0 8px 20px rgba(13,110,253,0.18);
    }
    .timeline-step.active .step-title { color: #0d6efd; }
    .timeline-step.active .step-desc { color: #495057; }

    /* Small screens: make it vertical stack */
    @media (max-width: 576px) {
      .timeline {
        flex-direction: column;
        align-items: stretch;
      }
      .timeline-step {
        width: 100%;
        min-width: 0;
        text-align: left;
        display: flex;
        gap: 1rem;
        align-items: center;
        padding: .5rem 0;
      }
      .timeline-step .step-icon { margin-bottom: 0; }
      .timeline-step::after { display: none; } /* no connector in vertical mode */
    }