/* ==========================================================
   CSS HALAMAN PILAR - JASA PEMBUATAN WEBSITE
   ========================================================== */

.jasa-wrapper {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.7;
}

/* --- Variabel & Global --- */
.jasa-text-accent { color: #7dc02f; }

.jasa-btn-primary {
    display: inline-block;
    background-color: #7dc02f;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #7dc02f;
    box-shadow: 0 5px 15px rgba(125, 192, 47, 0.3);
}
.jasa-btn-primary:hover {
    background-color: transparent;
    color: #7dc02f;
    transform: translateY(-3px);
}

.jasa-btn-outline {
    display: inline-block;
    background-color: transparent;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}
.jasa-btn-outline:hover {
    background-color: #ffffff;
    color: #111111;
    transform: translateY(-3px);
}


/* --- Hero Section --- */
.jasa-hero {
    position: relative;
    min-height: 100vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 150px 0; 
    overflow: hidden;
}

.jasa-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
    transform: scale(1.05);
}

.jasa-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.9) 0%, rgba(34, 34, 34, 0.7) 100%);
    z-index: 2;
}

.jasa-hero-container {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 40px; 
    padding-bottom: 60px; 
}

/* --- Breadcrumb --- */
.jasa-breadcrumb {
    margin-top: 20px; 
    margin-bottom: 40px; 
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.jasa-breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.jasa-breadcrumb li { font-size: 14px; color: #e0e0e0; }
.jasa-breadcrumb a { color: #ffffff; text-decoration: none; font-weight: 600; transition: color 0.3s ease; }
.jasa-breadcrumb a:hover { color: #7dc02f; }
.jasa-breadcrumb .jasa-separator { margin: 0 10px; color: #888888; }
.jasa-breadcrumb .jasa-active { color: #7dc02f; font-weight: 700; }

/* --- Konten Hero --- */
.jasa-hero-content { max-width: 800px; margin: 0 auto; }
.jasa-h1 { font-size: 52px; font-weight: 800; color: #ffffff; line-height: 1.2; margin-bottom: 25px; letter-spacing: -1px; }
.jasa-hero-desc { font-size: 18px; color: #cccccc; line-height: 1.8; margin-bottom: 40px; }
.jasa-hero-cta { display: flex; gap: 20px; justify-content: center; }


/* --- Shape Divider --- */
.jasa-shape-bottom {
    position: absolute;
    bottom: -1px; 
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
}

.jasa-shape-bottom svg { 
    position: relative; 
    display: block; 
    width: calc(100% + 1.3px); 
    height: 120px; 
}

.jasa-shape-bottom .jasa-shape-fill { 
    fill: #ffffff; 
}

/* --- Responsive HP & Tablet --- */
@media (max-width: 768px) {
    .jasa-hero {
        padding: 100px 0 180px 0; 
        min-height: auto;
    }
    .jasa-breadcrumb { margin-top: 70px; margin-bottom: 25px; }
    .jasa-h1 { font-size: 36px; }
    .jasa-hero-desc { font-size: 16px; }
    .jasa-hero-cta { flex-direction: column; gap: 15px; padding: 0 20px; }
    .jasa-btn-primary, .jasa-btn-outline { width: 100%; text-align: center; }
    .jasa-shape-bottom svg { height: 60px; }
}


/* ==========================================================
   CSS SECTION: TABLE OF CONTENTS (DAFTAR ISI)
   ========================================================== */

html { 
    scroll-behavior: smooth; 
}

.jasa-toc-section {
    padding: 20px 0 60px 0;
    background-color: #fcfcfc;
    position: relative;
    z-index: 10;
}

.jasa-toc-container {
    width: 90%;
    max-width: 1000px; 
    margin: 0 auto;
}

.jasa-toc-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(125, 192, 47, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.jasa-toc-card:hover {
    box-shadow: 0 20px 40px rgba(125, 192, 47, 0.08);
}

.jasa-toc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #7dc02f, #111111);
}

.jasa-toc-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #eeeeee;
}

.jasa-toc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(125, 192, 47, 0.1);
    color: #7dc02f;
    border-radius: 12px;
}

.jasa-toc-title {
    font-size: 24px;
    font-weight: 800;
    color: #111111;
    margin: 0;
    letter-spacing: -0.5px;
}

.jasa-toc-nav {
    display: block;
}

.jasa-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px 25px; 
}

.jasa-toc-item {
    position: relative;
}

.jasa-toc-link {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: #fafafa;
    border-radius: 12px;
    text-decoration: none;
    color: #444444;
    font-weight: 600;
    font-size: 15px; 
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%; 
    box-sizing: border-box;
}

.jasa-toc-number {
    font-size: 14px;
    font-weight: 800;
    color: #7dc02f;
    margin-right: 15px;
    opacity: 0.7;
    transition: all 0.3s ease;
    flex-shrink: 0; 
}

.jasa-toc-text {
    flex-grow: 1;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.jasa-toc-arrow {
    opacity: 0;
    transform: translateX(-15px);
    color: #7dc02f;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.jasa-toc-link:hover {
    background: #ffffff;
    border-color: #7dc02f;
    box-shadow: 0 8px 20px rgba(125, 192, 47, 0.1);
    transform: translateX(8px);
    color: #111111;
}

.jasa-toc-link:hover .jasa-toc-number {
    opacity: 1;
}

.jasa-toc-link:hover .jasa-toc-arrow {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 992px) {
    .jasa-toc-list {
        grid-template-columns: 1fr; 
    }
}

@media (max-width: 768px) {
    .jasa-toc-card {
        padding: 25px;
    }
    .jasa-toc-title {
        font-size: 20px;
    }
    .jasa-toc-link {
        padding: 14px 15px;
        font-size: 14px;
    }
    .jasa-toc-number {
        margin-right: 10px;
    }
}

/* ==========================================================
   CSS SECTION: URGENSI WEBSITE
   ========================================================== */

.jasa-urgensi-section {
    padding: 120px 0;
    background-color: #fcfcfc;
    position: relative;
}

.jasa-urgensi-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.jasa-h2 {
    font-size: 42px;
    font-weight: 800;
    color: #111111;
    line-height: 1.3;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.jasa-h3 {
    font-size: 22px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 15px;
    line-height: 1.4;
}

.jasa-urgensi-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.jasa-urgensi-text p {
    font-size: 17px;
    color: #555555;
    margin-bottom: 20px;
    text-align: justify;
}

.jasa-urgensi-image-wrapper {
    position: relative;
    border-radius: 24px;
    animation: floatingImg 6s ease-in-out infinite;
}

.jasa-urgensi-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.jasa-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: #7dc02f;
    filter: blur(80px);
    opacity: 0.15; /* Diturunkan sedikit agar lebih soft */
    z-index: 1;
}

@keyframes floatingImg {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* ==========================================================
   PREMIUM CAROUSEL + MASKOT MELOMPAT (CLEAN WHITE THEME)
   ========================================================== */

.jasa-urgensi-carousel-wrap{
    position: relative;
    margin-top: 10px;
}

.jasa-urgensi-carousel-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

/* Badge diubah menjadi clean */
.jasa-urgensi-carousel-badge{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #7dc02f;
    background: #ffffff;
    border: 1px solid rgba(125,192,47,0.3);
    box-shadow: 0 5px 15px rgba(125, 192, 47, 0.08);
}

.jasa-urgensi-carousel-nav{
    display: flex;
    align-items: center;
    gap: 12px;
}

.jasa-carousel-btn{
    width: 52px;
    height: 52px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    background: #ffffff;
    color: #7dc02f;
    font-size: 22px;
    border: 1px solid rgba(125, 192, 47, 0.2);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
}

.jasa-carousel-btn:hover{
    transform: translateY(-3px) scale(1.04);
    background: #7dc02f;
    color: #ffffff;
    box-shadow: 0 12px 20px rgba(125, 192, 47, 0.2);
}

/* Container Carousel diubah jadi terang & fresh */
.jasa-urgensi-carousel {
    position: relative;
    /* HAPUS baris ini: overflow: hidden; */
    clip-path: inset(-120px 0 0 0 round 32px); /* TAMBAHKAN INI */
    padding: 20px 60px 40px;
    border-radius: 32px;
    background: #f4fbf0;
    box-shadow: inset 0 0 20px rgba(125, 192, 47, 0.03);
    border: 1px solid rgba(125, 192, 47, 0.15);
}

/* Hilangkan glare miring yang tidak cocok untuk light theme */
.jasa-urgensi-carousel::before{
    display: none;
}

.jasa-carousel-track{
    display: flex;
    gap: 24px; 
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    position: relative; 
}

/* Card diubah menjadi Putih Bersih */
.jasa-carousel-card{
    min-width: calc((100% - 48px) / 3); 
    position: relative;
    padding: 38px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    transform: scale(0.96);
    opacity: 0.6;
    transition: all 0.45s ease;
    overflow: hidden; /* Mencegah elemen keluar dari rounded corner */
}

/* Card Aktif: Skala penuh, opacity penuh, dan Shadow Hijau Premium */
.jasa-carousel-card.is-active{
    transform: scale(1);
    opacity: 1;
    border: 1px solid rgba(125, 192, 47, 0.3);
    box-shadow: 0 25px 50px rgba(125, 192, 47, 0.12);
}

/* Lingkaran dekoratif tipis di sudut card */
.jasa-carousel-card::before{
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(125,192,47,0.08) 0%, rgba(125,192,47,0) 70%);
    pointer-events: none;
}

.jasa-carousel-card-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
}

/* Nomor Card Clean */
.jasa-carousel-no{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    height: 58px;
    padding: 0 14px;
    border-radius: 16px;
    background: rgba(125, 192, 47, 0.1);
    color: #7dc02f;
    font-size: 20px;
    font-weight: 800;
}

/* Tag mini clean */
.jasa-carousel-mini{
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f9f9f9;
    color: #666666;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid #eeeeee;
}

/* Warna teks di dalam Card */
.jasa-carousel-card .jasa-h3{
    color: #111111;
    font-size: 24px; 
    margin-bottom: 18px;
    line-height: 1.3;
}

.jasa-carousel-summary{
    color: #555555;
    font-size: 15px; 
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 0;
}

/* Tombol Modal Fresh */
.jasa-open-modal-btn{
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border: 1px solid rgba(125, 192, 47, 0.3);
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    color: #7dc02f;
    background: #ffffff;
    transition: all 0.35s ease;
}

.jasa-open-modal-btn:hover{
    transform: translateY(-3px);
    background: #7dc02f;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(125, 192, 47, 0.15);
}

.jasa-carousel-dots{
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.jasa-carousel-dot{
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: #dddddd;
    cursor: pointer;
    transition: all 0.35s ease;
}

.jasa-carousel-dot.is-active{
    width: 38px;
    border-radius: 999px;
    background: #7dc02f;
    box-shadow: 0 5px 12px rgba(125,192,47,0.3);
}

/* MASKOT LOMPAT */
.jasa-carousel-mascot{
    position: absolute;
    top: -55px; 
    left: 0; 
    width: 130px; 
    z-index: 20;
    pointer-events: none; 
    filter: drop-shadow(0 15px 20px rgba(0,0,0,0.15));
    transition: left 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.jasa-carousel-mascot.is-jumping {
    animation: maskotLompat 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes maskotLompat {
    0%   { transform: translateY(0) scale(1) rotate(0deg); }
    50%  { transform: translateY(-70px) scale(1.15) rotate(6deg); } 
    100% { transform: translateY(0) scale(1) rotate(0deg); }
}

/* --- modal --- */
.jasa-modal-overlay{
    position: fixed;
    inset: 0;
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.35s ease;
    z-index: 9999;
}

.jasa-modal-overlay.is-open{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.jasa-modal-box{
    position: relative;
    width: 100%;
    max-width: 860px;
    max-height: 88vh;
    overflow-y: auto;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 35px 80px rgba(0,0,0,0.15);
    padding: 42px;
    border: 1px solid rgba(125,192,47,0.18);
}

.jasa-modal-close{
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    color: #555555;
    background: #f5f5f5;
    transition: all 0.3s ease;
}

.jasa-modal-close:hover{
    background: #ffecec;
    color: #ff3333;
    transform: rotate(90deg);
}

.jasa-modal-label{
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(125,192,47,0.1);
    color: #7dc02f;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.jasa-modal-title{
    font-size: 34px;
    line-height: 1.3;
    font-weight: 800;
    color: #111111;
    margin: 0 0 20px;
}

.jasa-modal-content p{
    font-size: 17px;
    line-height: 1.9;
    color: #555555;
    margin-bottom: 18px;
    text-align: justify;
}

/* --- responsive tablet & mobile --- */
@media (max-width: 992px){
    .jasa-urgensi-carousel{
        padding: 18px 22px 30px;
    }
    .jasa-carousel-card{
        min-width: calc((100% - 24px) / 2);
        padding: 28px;
    }
    .jasa-carousel-card .jasa-h3{
        font-size: 22px;
    }
    .jasa-carousel-mascot{
        width: 100px;
        top: -45px;
    }
    .jasa-urgensi-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .jasa-urgensi-image-wrapper {
        order: -1;
    }
    .jasa-h2 {
        font-size: 34px;
    }
    .jasa-inline-cta {
        flex-direction: column; 
        align-items: flex-start;
        padding: 40px 30px;
        gap: 25px;
    }
    .jasa-inline-cta p {
        margin-bottom: 25px !important; 
    }
    .jasa-btn-cta-small {
        width: 100%; 
    }
}

@media (max-width: 768px){
    .jasa-urgensi-section {
        padding: 80px 0;
    }
    .jasa-urgensi-carousel-head{
        flex-direction: column;
        align-items: flex-start;
    }
    .jasa-urgensi-carousel-nav{
        width: 100%;
        justify-content: flex-end;
    }
    .jasa-urgensi-carousel{
        clip-path: inset(-100px 0 0 0 round 24px);
        padding: 16px 16px 30px;
        border-radius: 24px;
    }
    .jasa-carousel-card{
        min-width: 100%;
        padding: 22px 20px;
        border-radius: 22px;
    }
    .jasa-carousel-card .jasa-h3{
        font-size: 20px;
        line-height: 1.35;
        padding-right: 0;
    }
    .jasa-carousel-summary{
        font-size: 15px;
        line-height: 1.75;
        text-align: left;
    }
    .jasa-open-modal-btn{
        width: 100%;
    }
    .jasa-carousel-mascot{
        width: 85px;
        top: -35px;
    }
    .jasa-modal-box{
        padding: 28px 20px;
        border-radius: 22px;
    }
    .jasa-modal-title{
        font-size: 26px;
    }
    .jasa-modal-content p{
        font-size: 15px;
        line-height: 1.8;
        text-align: left;
    }
    .jasa-inline-cta h4 {
        font-size: 22px;
    }
}

/* --- Inline CTA --- */
.jasa-inline-cta {
    margin-top: 60px; 
    background: linear-gradient(135deg, #111111 0%, #1a252f 100%);
    border-radius: 20px;
    padding: 40px 50px;
    border-left: 6px solid #7dc02f; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.jasa-inline-cta-content {
    flex: 1; 
}

.jasa-inline-cta h4 {
    color: #ffffff;
    font-size: 26px; 
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

.jasa-inline-cta p {
    color: #cccccc !important;
    font-size: 16px !important;
    margin-bottom: 0 !important; 
    text-align: left !important;
    line-height: 1.6;
}

.jasa-btn-cta-small {
    display: inline-block;
    flex-shrink: 0; 
    background: #7dc02f;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.jasa-btn-cta-small:hover {
    background: #68a027;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(125, 192, 47, 0.3);
}


/* ==========================================================
   CSS SECTION: JENIS WEBSITE & SISTEM (BENTO BOX STYLE)
   ========================================================== */

.jasa-jenis-section {
    padding: 100px 0;
    background-color: #ffffff; /* Tema bersih menyambung dari section sebelumnya */
    position: relative;
}

.jasa-jenis-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.jasa-jenis-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.jasa-jenis-header p {
    font-size: 17px;
    color: #555555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.jasa-jenis-main-image {
    width: 100%;
    margin-bottom: 60px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(125, 192, 47, 0.1);
}

.jasa-responsive-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Menggunakan CSS Grid untuk Layout 2x2 */
.jasa-jenis-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.jasa-jenis-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 40px;
    border: 1px solid rgba(125, 192, 47, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.jasa-jenis-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(125, 192, 47, 0.12);
    border-color: rgba(125, 192, 47, 0.4);
}

/* Wrapper Gambar Mockup di dalam Card */
.jasa-jenis-card-img-wrap {
    width: 100%;
    height: 240px; /* Tinggi seragam untuk semua gambar */
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    background-color: #f4fbf0;
    position: relative;
}

.jasa-jenis-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.jasa-jenis-card:hover .jasa-jenis-card-img {
    transform: scale(1.08); /* Efek zoom saat card di-hover */
}

.jasa-jenis-card p {
    font-size: 16px;
    color: #555555;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 20px;
}

/* Custom Bullet List dengan Centang Hijau */
.jasa-custom-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.jasa-custom-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-size: 16px;
    color: #444444;
    line-height: 1.7;
}

.jasa-custom-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    color: #ffffff;
    background-color: #7dc02f;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Responsive Tablet & Mobile */
@media (max-width: 992px) {
    .jasa-jenis-grid {
        grid-template-columns: 1fr; /* Berubah jadi 1 kolom di tablet */
        gap: 30px;
    }
    .jasa-jenis-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .jasa-jenis-section {
        padding: 80px 0;
    }
    .jasa-jenis-card {
        padding: 25px;
        border-radius: 20px;
    }
    .jasa-jenis-card-img-wrap {
        height: 200px;
        margin-bottom: 20px;
    }
}

/* ==========================================================
   CSS SECTION: FITUR TEKNIS (DARK GLASSMORPHISM)
   ========================================================== */

.jasa-fitur-section {
    padding: 100px 0 120px 0;
    /* Gradient hijau sangat gelap dan elegan */
    background: linear-gradient(135deg, #0a140b 0%, #173b12 100%);
    position: relative;
    overflow: hidden;
}

/* Aksen cahaya redup di background */
.jasa-fitur-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(circle, rgba(125, 192, 47, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.jasa-fitur-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(circle, rgba(125, 192, 47, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.jasa-fitur-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.jasa-fitur-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
}

/* Modifikasi Heading & Teks untuk Background Gelap */
.jasa-h2-light {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.jasa-text-accent-light {
    color: #bdf06c; /* Hijau muda yang lebih menyala di background gelap */
}

.jasa-fitur-header p {
    font-size: 17px;
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Layout Grid 2x2 */
.jasa-fitur-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Desain Kartu Glassmorphism */
.jasa-fitur-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(125, 192, 47, 0.15);
    border-radius: 28px;
    padding: 45px 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.jasa-fitur-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(125, 192, 47, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(125, 192, 47, 0.05);
}

/* Garis hijau tipis di atas kartu saat di-hover */
.jasa-fitur-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #7dc02f;
    transition: width 0.4s ease;
}

.jasa-fitur-card:hover::before {
    width: 100%;
}

/* Ikon SVG Pembungkus */
.jasa-fitur-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: rgba(125, 192, 47, 0.15);
    color: #bdf06c; /* Warna ikon cerah */
    margin-bottom: 25px;
    border: 1px solid rgba(125, 192, 47, 0.25);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.jasa-fitur-card:hover .jasa-fitur-icon {
    background: #7dc02f;
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.jasa-h3-light {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.4;
}

.jasa-fitur-card p {
    font-size: 16px;
    color: #b3b3b3;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 15px;
}

.jasa-fitur-card p:last-child {
    margin-bottom: 0;
}

/* Responsive Tablet & Mobile */
@media (max-width: 992px) {
    .jasa-fitur-grid {
        grid-template-columns: 1fr;
    }
    .jasa-h2-light {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .jasa-fitur-section {
        padding: 80px 0;
    }
    .jasa-h2-light {
        font-size: 28px;
    }
    .jasa-fitur-header p {
        font-size: 15px;
    }
    .jasa-fitur-card {
        padding: 30px 25px;
        border-radius: 20px;
    }
    .jasa-h3-light {
        font-size: 20px;
    }
    .jasa-fitur-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 20px;
    }
    .jasa-fitur-icon svg {
        width: 28px;
        height: 28px;
    }
    .jasa-fitur-card p {
        font-size: 15px;
    }
}


/* ==========================================================
   CSS SECTION: MENGENAL HEXA TEKNOLOGI (RE-USE STYLE)
   ========================================================== */

.jasa-hexa-section {
    padding: 100px 0;
    background-color: #fcfcfc; /* Sama dengan tema Urgensi sebelumnya */
    position: relative;
}

.jasa-hexa-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Intro Grid: Teks kiri, Gambar kanan */
.jasa-hexa-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px; /* Jarak luas menuju Carousel keunggulan */
}

.jasa-hexa-intro-text p {
    font-size: 17px;
    color: #555555;
    margin-bottom: 20px;
    text-align: justify;
}

/* Helper Class Global untuk utility */
.jasa-center-text { text-align: center; }
.jasa-mb-50 { margin-bottom: 50px; }

/* Menyesuaikan area 'bocor' clip-path untuk maskot di container ini */
.jasa-hexa-carousel-container {
    clip-path: inset(-120px 0 0 0 round 32px); /* Atas diberi ruang, tepi rounded */
}

/* Responsive Tablet & Mobile */
@media (max-width: 992px) {
    .jasa-hexa-intro-grid {
        grid-template-columns: 1fr; /* 1 Kolom di tablet */
        gap: 40px;
    }
    .jasa-hexa-intro-image {
        order: -1; /* Gambar naik ke atas teks */
    }
}

@media (max-width: 768px) {
    .jasa-hexa-section {
        padding: 80px 0;
    }
    .jasa-hexa-carousel-container {
        clip-path: inset(-100px 0 0 0 round 24px); /* Sesuaikan untuk mobile */
    }
}
