 html,
 body {
     overflow-x: hidden;
     width: 100%;
 }

 /* =========================
   HERO
========================= */
#hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* BACKGROUND */
.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Memberikan efek sedikit zoom agar terlihat sinematik */
    transform: scale(1.1);
    filter: brightness(0.9) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Gradasi Radial & Linear untuk efek shade merah yang elegan */
    background:
        linear-gradient(180deg,
            rgb(209, 58, 76) 0%,
            /* Merah WP di atas */
            rgba(0, 0, 0, 0.2) 50%,
            /* Netral di tengah */
            rgba(0, 0, 0, 0.7) 100%),
        /* Gelap di bawah agar card putih 'pop out' */
        linear-gradient(45deg,
            rgba(209, 58, 76, 0.47) 0%,
            transparent 100%);

    /* Efek Duotone lembut */
    mix-blend-mode: multiply;
}

/* =========================
   HERO CONTENT
========================= */
.hero-content {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 60px;
}

.hero-card {
    background: white;
    border-radius: 14px;
    padding: 40px;
    display: flex;
    align-items: stretch;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    width: 100%;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    color: #d13a4b;
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
}

.hero-text h2 {
    font-size: 36px;
    line-height: 1.25;
    color: #232323;
}

.hero-description-old {
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-description-old p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.hero-description {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Memberikan ruang napas di bagian atas dan bawah seluruh blok teks */
    padding: 0;
}

/* Khusus untuk teks yang mungkin tidak terbungkus tag P atau DIV */
.hero-description {
    line-height: 1.85;
    color: #444;
}

/* Hilangkan margin di elemen paling terakhir agar tidak merusak centering vertikal */
.hero-description *:last-child {
    margin-bottom: 0 !important;
}

/* =========================
   HERO MOBILE — ALL IPHONE SERIES
========================= */

@media (max-width: 1024px) {

    #hero {
        display: block !important;
        height: auto !important;
        min-height: auto !important;
        /* ← UBAH INI, hapus 100vh */
        padding-top: 108px !important;
        /* Pro Max pakai ini */
        padding-bottom: 40px !important;
        box-sizing: border-box;
    }

    .hero-content {
        display: block !important;
        flex: none !important;
        align-items: unset !important;
        justify-content: unset !important;
        padding-bottom: 0 !important;
        width: 100%;
    }

    .hero-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 16px;
        padding: 24px 20px;
        margin: 0 auto !important;
        width: 100% !important;
        margin-top: 20px !important;
        box-sizing: border-box;
    }

    .hero-text h2 {
        font-size: 26px;
        line-height: 1.3;
    }
}

/* 320px — iPhone SE 1st gen */
@media (max-width: 374px) {
    #hero {
        padding-top: 88px !important;
        padding-bottom: 28px !important;
    }

    .hero-card {
        padding: 18px 14px;
        gap: 12px;
    }

    .hero-text h2 {
        font-size: 22px;
    }
}

/* 375–389px — iPhone SE 2nd/3rd, 13 mini */
@media (min-width: 375px) and (max-width: 389px) {
    #hero {
        padding-top: 96px !important;
    }

    .hero-card {
        padding: 20px 16px;
    }

    .hero-text h2 {
        font-size: 23px;
    }
}

/* 390–393px — iPhone 12, 13, 14, 12 Pro, 15 Pro */
@media (min-width: 390px) and (max-width: 393px) {
    #hero {
        padding-top: 100px !important;
    }

    .hero-card {
        padding: 24px 20px;
    }

    .hero-text h2 {
        font-size: 26px;
    }
}

/* 414–428px — iPhone XR, 11, 14 Plus */
@media (min-width: 414px) and (max-width: 428px) {
    #hero {
        padding-top: 104px !important;
    }

    .hero-card {
        padding: 28px 22px;
    }

    .hero-text h2 {
        font-size: 27px;
    }
}

/* 430px+ — iPhone 14 Pro Max, 15 Pro Max, 16 Pro Max */
@media (min-width: 430px) and (max-width: 1024px) {
    #hero {
        padding-top: 108px !important;
    }

    .hero-card {
        padding: 32px 24px;
        gap: 20px;
    }

    .hero-text h2 {
        font-size: 28px;
    }
}

/* =========================
   HERO — TEXT + CTA LAYOUT
========================= */

.hero-text .hero-description {
    margin-top: 16px;
    font-size: 15px;
}

.hero-text .hero-description p,
.hero-text .hero-description div,
.hero-text .hero-description span {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 6px !important;
    display: block;
}

.hero-text .hero-description *:last-child {
    margin-bottom: 0 !important;
}

/* =========================
   HERO CTA BOX
========================= */

.hero-cta-box {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(160deg, #d13a4b 0%, #8a1f2d 100%);
    border-radius: 12px;
    padding: 32px 28px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(209, 58, 75, 0.35);
}

.hero-cta-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.hero-cta-box p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.hero-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-hero-primary {
    background: #fff;
    color: #d13a4b;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-hero-primary:hover {
    color: #d13a4b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary {
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    text-align: center;
    text-decoration: none;
    transition: background 0.15s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* =========================
   HERO CTA — MOBILE
========================= */

@media (max-width: 1024px) {
    .hero-cta-box {
        flex: none;
        width: 100%;
        justify-content: flex-start;
        gap: 20px;
    }

    .hero-cta-buttons {
        flex-direction: column;
    }
}

.hero-cta-text h3 {
    margin-bottom: 8px;
    font-size: 22px;
    /* font-family: 'Poppins'; */
}

.hero-cta-text p {
    margin-bottom: 0;
    font-size: 14px;
    font-family: 'Poppins';
}

 /* =========================================
   SECTION FIRM - STYLES
   ========================================= */
 #firm {
     padding: 100px 0;
     background-color: #fafafa;
     /* Background sedikit off-white agar shadow lebih menonjol */
     font-family: 'Inter', sans-serif;
     /* Sesuaikan dengan font project Anda */
 }

 .firm-wrapper {
     max-width: 1200px;
     /* Diperlebar dari 1100px */
     margin: 0 auto;
     padding: 0 20px;
 }

 /* --- Header Section --- */

 .section-label {
     color: #3b7b77;
     /* Warna Teal sesuai desain */
     font-size: 14px;
     font-weight: 600;
     letter-spacing: 2.5px;
     text-transform: uppercase;
     display: block;
     margin-bottom: 12px;
 }

 .firm-header {
     text-align: center;
     margin-bottom: 60px;
     width: 100%;
     /* Pastikan header mengambil lebar penuh */
 }

 .firm-header .section-heading {
     font-size: 40px;
     font-weight: 600;
     color: #222222;
     margin: 0 auto;
     /* Center alignment */
     line-height: 1.3;

     /* SOLUSI AGAR MANJANG: */
     max-width: 900px;
     /* Tingkatkan max-width agar teks tidak cepat "patah" ke bawah */
     white-space: normal;
     /* Memungkinkan teks membungkus jika layar sangat sempit */
 }

 /* --- Container Dua Kolom --- */
 .firm-container {
     display: flex;
     align-items: flex-start;
     /* UBAH KE FLEX-START: Agar gambar kiri tetap rapi di atas saat teks kanan memanjang */
     gap: 60px;
 }

 .firm-images {
     flex: 1;
     position: relative;
     top: 10px;
     /* Opsional: memberi sedikit offset ke bawah agar sejajar dengan baris pertama teks */
 }

 .firm-content {
     flex: 1;
 }

 /* --- Collage Gambar Kiri --- */
 .image-collage {
     position: relative;
     height: 460px;
     width: 100%;
     max-width: 500px;
     margin: 0 auto;
 }

 .image-collage img {
     object-fit: cover;
     border-radius: 12px;
     /* Radius melengkung sesuai desain */
     box-shadow: 0 14px 62px rgba(0, 0, 0, 0.43);
     /* Soft shadow */
 }

 .firm-img-1 {
     position: absolute;
     top: 0;
     left: 0;
     width: 75%;
     height: 320px;
     z-index: 1;
 }

 .firm-img-2 {
     position: absolute;
     bottom: 0;
     right: 0;
     width: 70%;
     height: 240px;
     z-index: 2;
     /* Dihapus border putihnya karena di desain asli hanya shadow */
     border: none;
 }

 /* --- SCOPE STYLING UNTUK OUTPUT SUMMERNOTE (.firm-text) --- */
 .firm-text {
     font-size: 16px;
     line-height: 1.7;
     color: #4a4a4a;
 }

 /* Mengatur jarak antar paragraf */
 .firm-text p {
     margin-bottom: 0px;
 }

 /* Menjinakkan ukuran Heading dari Summernote agar tidak merusak layout global */
 .firm-text h1,
 .firm-text h2,
 .firm-text h3,
 .firm-text h4,
 .firm-text h5,
 .firm-text h6 {
     color: #222222;
     font-weight: 600;
     line-height: 1.3;
     margin-top: 25px;
     margin-bottom: 15px;
 }

 .firm-text h1 {
     font-size: 28px;
 }

 .firm-text h2 {
     font-size: 24px;
 }

 .firm-text h3 {
     font-size: 20px;
 }

 .firm-text h4 {
     font-size: 18px;
 }

 /* Merapikan list (bullet points) jika user menginputnya */
 .firm-text ul,
 .firm-text ol {
     margin-bottom: 20px;
     padding-left: 20px;
 }

 .firm-text li {
     margin-bottom: 8px;
 }

 /* --- Badge Experience Refined --- */
 .experience-badge {
     position: absolute;
     top: 40px;
     /* Sedikit lebih naik */
     right: 5%;
     background-color: #3b7b77;
     padding: 20px 25px;
     /* Padding lebih ramping */

     /* Border radius lebih halus */
     border-radius: 12px 12px 12px 12px;

     box-shadow: 0 12px 30px rgba(59, 123, 119, 0.2);
     z-index: 3;
     text-align: left;
     display: flex;
     flex-direction: column;
     justify-content: center;
     min-width: 120px;
     /* Ukuran dasar lebih kecil */
     overflow: visible;
 }

 /* Pseudo-element ekor miring yang lebih seamless */
 .experience-badge::after {
     content: '';
     position: absolute;
     top: 0;
     right: -15px;
     /* Jarak keluar dikurangi agar lebih compact */
     width: 45px;
     /* Lebar dikurangi */
     height: 100%;
     background-color: #3b7b77;

     /* Border radius sisi kanan disamakan agar halus */
     border-radius: 0 12px 12px 0;

     /* Kemiringan diperhalus ke -12deg */
     transform: skewX(-14deg);

     z-index: -1;
 }

 .experience-badge .years {
     font-size: 40px;
     /* Ukuran angka lebih proporsional */
     font-weight: 700;
     color: #ffffff;
     line-height: 1;
     margin-bottom: 4px;
     position: relative;
 }

 .experience-badge .label {
     font-size: 11px;
     /* Teks label sedikit lebih kecil agar clean */
     font-weight: 600;
     color: #ffffff;
     line-height: 1.2;
     letter-spacing: 0.8px;
     text-transform: uppercase;
     position: relative;
     opacity: 0.95;
     /* Sedikit transparansi agar estetika SaaS dapet */
 }

 /* --- Teks Konten Kanan --- */
 .firm-text {
     color: #666666;
     font-size: 15px;
     line-height: 1.8;
     /* HAPUS display: flex dan gap agar tidak merusak spasi paragraf */
 }

 /* Atur jarak antar paragraf secara presisi di sini */
 .firm-text p {
     margin-top: 0;
     margin-bottom: 12px;
     /* Ubah angka ini (misal: 10px atau 12px) untuk memperkecil/memperbesar jarak sesuai selera */
 }

 .firm-text h1,
 .firm-text h1 span {
     font-size: 32px !important;
     font-weight: 600 !important;
     color: #222222 !important;
 }

 .firm-text h2,
 .firm-text h2 span {
     font-size: 26px !important;
     font-weight: 600 !important;
     color: #222222 !important;
 }

 .firm-text h3,
 .firm-text h3 span {
     font-size: 22px !important;
     font-weight: 600 !important;
     color: #222222 !important;
 }

 .firm-text h4,
 .firm-text h4 span {
     font-size: 18px !important;
     font-weight: 600 !important;
     color: #222222 !important;
 }

 /* Aturan global margin untuk heading di frontend */
 .firm-text h1,
 .firm-text h2,
 .firm-text h3,
 .firm-text h4,
 .firm-text h5,
 .firm-text h6 {
     line-height: 1.3;
     margin-top: 25px;
     margin-bottom: 15px;
 }

 /* Merapikan list (bullet points) */
 .firm-text ul,
 .firm-text ol {
     margin-bottom: 20px;
     padding-left: 20px;
 }

 .firm-text li {
     margin-bottom: 8px;
 }

 @media (max-width: 900px) {
     #firm {
         padding: 70px 0 40px 0;
         background-color: #fafafa;
         /* Background sedikit off-white agar shadow lebih menonjol */
         font-family: 'Inter', sans-serif;
         /* Sesuaikan dengan font project Anda */
     }

     /* Container Utama */
     .firm-container {
         display: flex;
         flex-direction: column;
         /* Tumpuk vertikal */
         gap: 30px;
         /* Jarak antar elemen */
     }

     .firm-header .section-heading {
         font-size: 30px;
     }

     /* 1. Bagian Gambar (Muncul Pertama di bawah Judul) */
     .firm-images {
         order: 1;
         width: 100%;
         margin-bottom: 20px;
     }

     .image-collage {
         position: relative;
         width: 100%;
         height: 380px;
         /* Tentukan tinggi agar gambar tidak collapse */
         margin: 0 auto;
     }

     /* 2. Bagian Teks (Muncul Terakhir) */
     .firm-content {
         order: 2;
         width: 100%;
     }

     .firm-text {
         text-align: left;
         /* SaaS pro biasanya rata kiri di mobile */
         font-size: 15px;
         line-height: 1.6;
     }

     /* Penyesuaian Gambar di dalam Collage */
     .firm-img-1 {
         width: 80%;
         height: 250px;
         object-fit: cover;
         border-radius: 12px;
         border: 5px solid #fff;
     }

     .firm-img-2 {
         width: 70%;
         height: 180px;
         position: absolute;
         right: 0;
         bottom: 0;
         border: 5px solid #fff;
         /* Efek border tumpuk */
         border-radius: 12px;
         z-index: 2;
     }

     /* Badge agar tetap rapi */
     .experience-badge {
         top: 130px;
         /* Sesuaikan posisi agar nempel di tumpukan gambar */
         right: 5%;
         padding: 12px 18px;
         min-width: 100px;
     }

     .experience-badge .years {
         font-size: 26px;
     }

     .experience-badge .label {
         font-size: 10px;
     }
 }

 /* CSS for section section:People */
 #people {
     padding: 100px 0;
     background-color: #f5f6f8;
     /* Background section abu-abu terang */
 }

 #people .section-heading {
     font-family: 'Inter', sans-serif;
     font-weight: 600;
     /* Semi Bold */
     font-size: 40px;
     color: #222222;
     line-height: 1.3;
     text-align: center;
     /* Memastikan teks panjangnya nanti rata tengah */

     /* SOLUSI AGAR BISA TURUN KE BAWAH: */
     white-space: normal;
     /* Mengembalikan ke normal agar teks bisa dipatahkan ke bawah */
     width: 100%;
     /* Mengikuti lebar container utamanya */

     /* Opsional: Batasi lebar maksimal agar teks tidak terlalu melar di layar monitor yang sangat lebar */
     max-width: 800px;
     margin: 0 auto;
     /* Menjaga posisi block tetap di tengah-tengah */
 }

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

 /* Base Card Shape & Background */
 .person-card {
     position: relative;
     /* Ini rahasia shape-nya: Top-L, Top-R, Bottom-R (Besar!), Bottom-L */
     border-radius: 30px 30px 100px 30px;
     overflow: hidden;
     aspect-ratio: 3/4;
     /* Memberikan gradient background biru muda ke hitam seperti di desain */
     background: linear-gradient(180deg, #dce8ed 0%, #747474 100%);
     cursor: pointer;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
     transition: transform 0.4s ease, box-shadow 0.4s ease;
 }

 .person-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(237, 28, 36, 0.2);
 }

 .person-image {
     width: 100%;
     height: 100%;
     position: relative;
     z-index: 1;
 }

 .person-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: top;
     /* Fokus ke area atas gambar */
     transition: transform 0.6s ease;
 }

 /* Efek zoom tipis pada foto saat di-hover */
 .person-card:hover .person-image img {
     transform: scale(1.08);
 }

 /* Default Overlay (Hitam transparan) */
 .person-overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 65%;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
     z-index: 2;
     transition: all 0.4s ease;
 }

 /* Hover Overlay (Berubah jadi Merah Brand) */
 .person-card:hover .person-overlay {
     background: linear-gradient(to top, rgba(237, 28, 36, 0.95) 0%, rgba(237, 28, 36, 0.6) 50%, transparent 100%);
 }

 /* Text & Info Box */
 .person-info {
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     text-align: left;
     /* Teks rata kiri sesuai desain */
     padding: 35px 30px;
     /* Padding dari kiri dan bawah */
     color: white;
     z-index: 3;
     display: flex;
     flex-direction: column;
 }

 .person-info h3 {
     font-size: 20px;
     font-weight: 700;
     margin-bottom: 4px;
     color: #ffffff;
 }

 .person-info p {
     font-size: 13px;
     color: #aeaeae;
     margin-bottom: 0;
     transition: color 0.3s ease;
 }

 /* Warna teks profesi sedikit lebih terang saat di-hover */
 .person-card:hover .person-info p {
     color: rgba(255, 255, 255, 0.9);
 }

 /* View Detail Link - Hidden by default */
 .view-detail {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     font-size: 13px;
     font-weight: 700;
     color: #ffffff;
     text-transform: uppercase;
     text-decoration: none;

     /* Animasi sembunyi ke bawah */
     opacity: 0;
     max-height: 0;
     margin-top: 0;
     transform: translateY(15px);
     transition: all 0.4s ease;
 }

 .view-detail img {
     width: 14px;
     transition: transform 0.3s ease;
 }

 /* Panah bergerak saat link disentuh */
 .view-detail:hover img {
     transform: translateX(6px);
 }

 /* Munculkan View Detail saat Card di-hover */
 .person-card:hover .view-detail {
     opacity: 1;
     max-height: 30px;
     margin-top: 15px;
     transform: translateY(0);
 }

 /* Khusus untuk container tombol View More di section #people saja */
#people .view-more-container {
    display: flex;
    justify-content: center; /* Memaksa tombol di dalamnya ke center secara horizontal */
    align-items: center;
    width: 100%;
    margin-top: 50px;        /* Jarak aman dari baris kartu di atasnya */
}

/* Jika tombolnya juga ingin dikhususkan untuk section people saja */
#people .btn-view-more {
     display: inline-flex;
     align-items: center;
     background-color: var(--primary-color);
     color: white;
     padding: 8px 24px 8px 8px;
     border-radius: 48px;
     gap: 16px;
}

 @media (max-width: 991px) {
     #people .section-heading {
         white-space: normal;
         /* Kembali ke normal di mobile */
         width: auto;
         font-size: 28px;
         /* Ukuran lebih kecil untuk mobile */
     }

     #people {
         padding: 60px 0 30px 0;
         background-color: #f5f6f8;
         /* Background section abu-abu terang */
     }
 }

 /* =========================================
   SECTION: CAPABILITIES (Optimized)
   ========================================= */
 #capabilities {
     padding: 100px 0;
     background-color: var(--bg-light);
     overflow: hidden;
 }

 .section-title {
     text-align: center;
     margin-bottom: 70px;
 }

 .section-heading {
     color: var(--text-dark);
     font-size: 40px;
     font-weight: 600;
     max-width: 700px;
     margin: 0 auto;
     line-height: 1.3;
 }

 #capabilities .section-heading {
     font-family: 'Inter', sans-serif;
     font-weight: 600;
     /* Semi Bold */
     font-size: 40px;
     color: var(--text-dark);
     line-height: 1.3;
     margin: 0 auto;

     /* SOLUSI SATU BARIS */
     white-space: normal;
     /* Larang teks pindah baris */
     width: 900px;
     /* Lebar mengikuti panjang teks */
     max-width: 100%;
     /* Pastikan tidak melebihi layar */
     display: block;
 }

 @media (max-width: 1024px) {
     #capabilities .section-heading {
         white-space: normal;
         /* Balikin normal di layar kecil biar nggak kepotong */
         width: auto;
         font-size: 32px;
         /* Kecilin dikit fontnya */
         max-width: 90%;
         /* Beri jarak aman di kanan kiri */
     }
 }

 /* Container Slider */
 .capabilities-slider-container {
     width: 100%;
     position: relative;
     padding: 20px 0 60px;
     /* Ruang untuk shadow kartu dan pagination */
 }

 /* Card Design */
 .capability-card {
     background: white;
     border-radius: 12px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     overflow: hidden;
     display: flex;
     flex-direction: column;
     height: auto;
     border: 1px solid rgba(0, 0, 0, 0.03);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .capability-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
 }

 .card-image-wrapper {
     width: 100%;
     height: 200px;
     overflow: hidden;
 }

 .card-image-wrapper img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .capability-card:hover .card-image-wrapper img {
     transform: scale(1.1);
 }

 .card-content {
     padding: 30px;
     text-align: left;
     display: flex;
     flex-direction: column;
     flex-grow: 1;
 }

 .card-content h3 {
     font-size: 20px;
     font-weight: 600;
     color: var(--text-dark);
     margin-bottom: 15px;
 }

 .card-content p {
     font-size: 15px;
     color: var(--text-gray);
     line-height: 1.6;
     margin: 0;
 }

 /* =========================================
   SWIPER CUSTOM STYLING (Dots & Arrows)
   ========================================= */

 /* Pagination / Dots */
 .swiper-pagination {
     position: relative !important;
     bottom: 0 !important;
     margin-top: 30px;
 }

 /* Bentuk awal titik (abu-abu) */
 .dot {
     width: 10px !important;
     height: 10px !important;
     background-color: #d8d8d8 !important;
     opacity: 1 !important;
     border-radius: 50%;
     display: inline-block;
     margin: 0 6px !important;
     transition: all 0.3s ease !important;
     cursor: pointer;
 }

 /* Titik Aktif (Merah) */
 .swiper-pagination-bullet-active.dot {
     background-color: #e02020 !important;
     width: 30px !important;
     /* Membuatnya lonjong seperti di gambar referensi */
     border-radius: 20px;
 }

 /* Navigation Arrows */
 .swiper-button-next,
 .swiper-button-prev {
     color: #e02020 !important;
     background: white;
     width: 50px;
     height: 50px;
     border-radius: 50%;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     top: 45% !important;
     /* Posisi di tengah kartu */
 }

 .swiper-button-next:after,
 .swiper-button-prev:after {
     font-size: 20px !important;
     font-weight: bold;
 }

 /* Geser panah sedikit ke luar kartu */
 .swiper-button-next {
     right: -25px;
 }

 .swiper-button-prev {
     left: -25px;
 }

 /* Responsive */
 @media (max-width: 1200px) {

     /* Kembalikan panah ke dalam jika layar menyempit */
     .swiper-button-next {
         right: 10px;
     }

     .swiper-button-prev {
         left: 10px;
     }
 }

 @media (max-width: 768px) {
     .section-heading {
         font-size: 30px;
     }

     .swiper-button-next,
     .swiper-button-prev {
         display: none;
     }

     /* Sembunyikan panah di mobile */
     #capabilities {
         padding: 60px 0;
     }
 }

 /* CSS for section section:Clients */
 /* Container Utama */
 #clients {
     padding: 80px 0;
     background-color: #ffffff;
     overflow: hidden;
     /* Penting agar tidak ada scrollbar horizontal */
 }

 .marquee-wrapper {
     display: flex;
     flex-direction: column;
     gap: 30px;
     /* Jarak antar baris atas dan bawah */
     margin-top: 50px;
 }

 .marquee-container {
     display: flex;
     width: 100%;
     overflow: hidden;
     padding: 30px 0;
     margin: -30px 0;
     /* Membuat efek memudar di pinggir kanan dan kiri agar terlihat modern */
     mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
     -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
 }

 .marquee-track {
     display: flex;
     gap: 20px;
     flex-shrink: 0;
 }

 /* Base Logo Style */
 .client-logo {
     background: white;
     border-radius: 18px;
     box-shadow: 0px 2px 40px rgba(0, 0, 0, 0.08);
     width: 200px;
     height: 100px;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 20px;
     flex-shrink: 0;
     /* Agar logo tidak gepeng */
 }

 .client-logo img {
     max-height: 100%;
     max-width: 100%;
     object-fit: contain;
     /* SaaS style: logo grayscale */
     opacity: 0.8;
     transition: all 0.3s ease;
 }

 .client-logo:hover img {
     filter: grayscale(0%);
     opacity: 1;
 }

 /* Animasi Ke Kiri */
 .track-left {
     animation: scroll-left 30s linear infinite;
 }

 /* Animasi Ke Kanan */
 .track-right {
     animation: scroll-right 30s linear infinite;
 }

 @keyframes scroll-left {
     from {
         transform: translateX(0);
     }

     to {
         transform: translateX(calc(-50% - 10px));
     }

     /* 10px adalah setengah dari gap */
 }

 @keyframes scroll-right {
     from {
         transform: translateX(calc(-50% - 10px));
     }

     to {
         transform: translateX(0);
     }
 }

 /* Pause saat di-hover */
 .marquee-container:hover .marquee-track {
     animation-play-state: paused;
 }

 /* ==========================================================================
   TESTIMONIAL SECTION (SaaS Split Design)
   ========================================================================== */

 /* Pastikan font keluarga yang clean (opsional tapi disarankan) */
 /* Pastikan font keluarga yang clean (opsional tapi disarankan) */
 #testimonials {
     font-family: 'Inter', system-ui, -apple-system, sans-serif;
     padding: 120px 0;

     /* === PERUBAHAN BACKGROUND IMAGE === */
     /* Fallback color (warna dasar jika gambar gagal dimuat) */
     background-color: #3b7b77;
     /* Ganti 'images/bg-waves.png' dengan path/lokasi gambar kamu yang sebenarnya */
     background-image: url('{{ asset("assets/images/bg-waves.svg") }}');
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     /* ================================== */

     position: relative;
     overflow: hidden;
     z-index: 1;
     font-weight: 600;
 }

 /* Tambahan: Glow Halus di tengah untuk kedalaman */
 .testimonial-slider::before {
     content: "";
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 800px;
     height: 600px;
     background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 80%);
     filter: blur(60px);
     z-index: -1;
     pointer-events: none;
 }

 /* === TITLE STYLING === */
 #testimonials .section-title {
     text-align: center;
     margin-bottom: 60px;
     position: relative;
     z-index: 2;
 }

 #testimonials .section-heading {
     color: #ffffff;
     font-size: 2.5rem;
     font-weight: 600;
     letter-spacing: -0.02em;
     margin-bottom: 15px;
 }

 #testimonials .section-subheading {
     color: rgba(255, 255, 255, 0.7);
     font-size: 1.125rem;
     margin: 0;
 }

 /* === SLIDER & WRAPPER === */
 .testimonial-slider {
     padding-bottom: 80px;
     z-index: 2;
     position: relative;
     display: block;
 }

 /* Memaksa semua slide swiper memiliki tinggi yang sama */
 .testimonial-slider .swiper-slide {
     height: auto;
     display: flex;
     align-items: stretch;
 }

 .testimonial-wrapper {
     display: flex;
     flex-direction: row;
     align-items: stretch;
     gap: 30px;
     /* Diperlebar sedikit agar lebih lega */
     width: 100%;
     /* === PERUBAHAN LEBAR CARD === */
     max-width: 1150px;
     /* Diperbesar dari 1000px agar quote box memanjang ke kanan */
     margin: 0 auto;
     transition: transform 0.3s ease;
 }

 /* === KOTAK LOGO (Kiri) === */
 .brand-box {
     background: #ffffff;
     border-radius: 24px;
     width: 300px;
     /* Disesuaikan agar proporsional dengan card yang memanjang */
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 40px;
     flex-shrink: 0;
     border: 1px solid rgba(0, 0, 0, 0.05);
     box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.12);
 }

 .brand-box img {
     width: 100%;
     max-width: 200px;
     max-height: 120px;
     object-fit: contain;
 }

 /* === KOTAK QUOTE (Kanan) === */
 .quote-box {
     background: #ffffff;
     border-radius: 24px;
     padding: 50px 60px;
     flex: 1;
     /* Ini yang membuat box kanan mengambil seluruh sisa space secara otomatis */
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     position: relative;
     overflow: hidden;
     border: 1px solid rgba(0, 0, 0, 0.05);
     box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
 }

 .quote-text {
     position: relative;
     z-index: 1;
     font-size: 1.05rem;
     /* Sedikit dibesarkan agar seimbang dengan card yang lebar */
     line-height: 1.8;
     color: #374151;
     font-weight: 400;
     margin-bottom: 30px;
     flex-grow: 1;
 }

 /* Memperbaiki ::before agar tidak menutupi teks */
 .quote-box::before {
     content: '“';
     position: absolute;
     top: -20px;
     left: 30px;
     font-size: 160px;
     color: rgba(15, 23, 42, 0.05);
     font-family: Georgia, serif;
     line-height: 1;
     z-index: 0;
     pointer-events: none;
 }

 /* === AUTHOR INFO === */
 .author-meta {
     position: relative;
     z-index: 1;
     display: flex;
     align-items: center;
     gap: 16px;
     border-top: 1px solid #f3f4f6;
     padding-top: 24px;
 }

 .author-avatar {
     width: 52px;
     height: 52px;
     border-radius: 50%;
     object-fit: cover;
     border: 2px solid #ffffff;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
 }

 .author-info h4 {
     margin: 0 0 4px 0;
     font-size: 16px;
     font-weight: 600;
     color: #111827;
     letter-spacing: -0.01em;
 }

 .author-info p {
     margin: 0;
     font-size: 14px;
     color: #6b7280;
     font-weight: 500;
 }

 /* === PAGINATION (Capsule Style) === */
 .testimonial-pagination.swiper-pagination-bullets {
     bottom: 20px !important;
 }

 .testimonial-pagination .swiper-pagination-bullet {
     background: rgba(255, 255, 255, 0.2) !important;
     width: 12px;
     height: 6px;
     border-radius: 10px;
     opacity: 1;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .testimonial-pagination .swiper-pagination-bullet-active {
     background: #ffffff !important;
     width: 32px;
     box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
 }

 /* === MOBILE RESPONSIVE FIX === */
 @media (max-width: 850px) {
     #testimonials {
         padding: 80px 0;
     }

     .testimonial-wrapper {
         flex-direction: column;
         padding: 0 20px;
         gap: 15px;
     }

     .brand-box {
         width: auto;
         align-self: stretch;
         box-sizing: border-box;
         height: 120px;
         padding: 20px;
     }

     .brand-box img {
         max-width: 120px;
     }

     .quote-box {
         box-sizing: border-box;
         padding: 35px 30px;
     }

     .quote-box::before {
         left: 20px;
         font-size: 140px;
     }

     .quote-text {
         font-size: 1.05rem;
         margin-bottom: 30px;
     }

     .author-meta {
         padding-top: 20px;
     }
 }

 /* CSS for section section:Careers */
 #careers {
     padding: 80px 0;
     background-color: white;
     text-align: center;
 }

 .careers-content {
     max-width: 800px;
     margin: 0 auto;
 }

 .careers-content p {
     color: var(--text-gray);
     margin-bottom: 40px;
 }

 .btn-email {
     display: inline-flex;
     align-items: center;
     background-color: var(--primary-color);
     color: white;
     padding: 8px 24px 8px 8px;
     border-radius: 48px;
     gap: 16px;
     transition: background-color 0.3s;
 }

 .btn-email:hover {
     background-color: #2d6464;
 }

 .icon-circle {
     width: 44px;
     height: 44px;
     background-color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .icon-circle img {
     width: 24px;
 }

 /* CSS for section section:Contact */
 #contact {
     padding: 80px 0;
     background-color: #f5f6f8;
 }

 .contact-wrapper {
     display: flex;
     justify-content: space-between;
     gap: 60px;
 }

 .contact-info {
     flex: 1;
 }

 .contact-details {
     margin-top: 40px;
     display: flex;
     flex-direction: column;
     gap: 24px;
 }

 .contact-item {
     display: flex;
     align-items: center;
     gap: 20px;
 }

 .icon-box {
     width: 32px;
     height: 32px;
     background-color: var(--primary-color);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .icon-box img {
     width: 16px;
 }

 .contact-item span {
     color: var(--text-dark);
     font-size: 16px;
 }

 .contact-form-card {
     flex: 1;
     background: white;
     padding: 40px;
     border-radius: 12px;
     max-width: 600px;
 }

 .form-group {
     margin-bottom: 24px;
 }

 .form-group label {
     display: block;
     margin-bottom: 8px;
     color: var(--text-gray);
     font-size: 14px;
 }

 .form-group input,
 .form-group textarea {
     width: 100%;
     padding: 16px;
     background-color: #f6f6f6;
     border: none;
     border-radius: 14px;
     font-family: inherit;
     font-size: 14px;
     color: var(--text-dark);
 }

 .btn-submit {
     background-color: var(--primary-color);
     color: white;
     border: none;
     /* Padding atas-bawah dikecilkan jadi 6px agar lebih ramping */
     padding: 6px 35px 6px 8px;
     border-radius: 100px;

     display: inline-flex;
     align-items: center;
     gap: 15px;
     /* Jarak teks dan icon agak dirapatkan sedikit */
     cursor: pointer;

     font-family: 'Inter', sans-serif;
     font-size: 16px;
     /* Font 16px sudah cukup besar dan elegan */
     font-weight: 600;

     float: right;
     transition: all 0.3s ease;
 }

 .icon-circle-small {
     /* Ukuran lingkaran dikecilkan dari 48px ke 34px agar button tidak bongsor */
     width: 34px;
     height: 34px;
     background-color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .icon-circle-small img {
     /* Sesuaikan ukuran icon di dalam lingkaran yang lebih kecil */
     width: 16px;
 }

 @media (max-width: 768px) {
     .contact-wrapper {
         flex-direction: column;
     }
 }

 /* CSS for section section:Gallery */
 #gallery {
     padding: 80px 0;
     background-color: white;
 }

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

 .gallery-card {
     position: relative;
     height: 300px;
     border-radius: 18px;
     overflow: hidden;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
 }

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

 .gallery-overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to top,
             rgba(0, 0, 0, 0.8),
             transparent);
 }

 /* Update CSS untuk Efek Hover */
 .gallery-card .gallery-overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 100%;
     /* Default overlay hitam transparan */
     background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
     transition: all 0.4s ease;
     /* Tambahkan transisi */
     opacity: 1;
 }

 /* Saat di-hover, ubah menjadi tema merah */
 .gallery-card:hover .gallery-overlay {
     background: linear-gradient(to top, rgba(223, 117, 117, 0.9), transparent);
 }

 /* Opsional: Efek zoom sedikit pada gambar saat hover */
 .gallery-card img.gallery-bg {
     transition: transform 0.5s ease;
 }

 .gallery-card:hover img.gallery-bg {
     transform: scale(1.1);
 }

 .gallery-content {
     position: absolute;
     bottom: 30px;
     left: 30px;
     right: 30px;
     color: white;
 }

 .album-tag {
     font-size: 12px;
     font-weight: 700;
     margin-bottom: 10px;
     display: block;
 }

 .gallery-content h3 {
     font-size: 20px;
     margin-bottom: 20px;
     line-height: 1.4;
 }

 .btn-album {
     background: white;
     color: var(--primary-color);
     padding: 8px 16px;
     border-radius: 8px;
     font-size: 14px;
     font-weight: 600;
     display: inline-block;
 }

 .view-more-container {
     text-align: center;
     margin-top: 50px;
 }

 .btn-view-more {
     display: inline-flex;
     align-items: center;
     background-color: var(--primary-color);
     color: white;
     padding: 8px 24px 8px 8px;
     border-radius: 48px;
     gap: 16px;
 }

 /* CSS for section section:Insights */
 #insights {
     padding: 100px 0;
     background-color: #FFF5F5;
     /* Warna dasar soft pink */
     position: relative;
     overflow: hidden;
     /* Penting agar gambar curve tidak bocor ke section lain */
     z-index: 1;
 }

 /* --- Dekorasi Gambar Curve dari Figma --- */
 .curve-decoration {
     position: absolute;
     pointer-events: none;
     /* Supaya tidak menghalangi kursor saat klik card */
     z-index: -1;
     opacity: 0.8;
     /* Sesuaikan transparansi di sini */
 }

 .curve-top {
     top: 0;
     left: 0;
     width: 100%;
 }

 .curve-bottom {
     bottom: 0;
     right: 0;
     width: 45%;
     max-width: 700px;
 }

 

 /* Responsif agar tidak terpotong di layar HP */
 @media (max-width: 991px) {
     #insights .section-heading {
         white-space: normal;
         width: auto;
         font-size: 28px;
         max-width: 90%;
     }

     #insights {
         padding: 60px 0;
         background-color: #FFF5F5;
         /* Warna dasar soft pink */
         position: relative;
         overflow: hidden;
         /* Penting agar gambar curve tidak bocor ke section lain */
         z-index: 1;
     }
 }

 /* Container dipastikan tetap di depan */
 #insights .container {
     position: relative;
     z-index: 2;
 }

 .insights-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 40px;
     /* Jarak antar card lebih lebar agar tidak sesak */
 }

 .insight-card {
     background: white;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
     transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
     border: 1px solid rgba(0, 0, 0, 0.05);
     height: 100%;
     display: flex;
     flex-direction: column;
 }

 /* Hover Effect: Card naik ke atas dan bayangan menebal */
 .insight-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
     border-color: rgba(237, 28, 36, 0.1);
 }

 .insight-image {
     position: relative;
     height: 260px;
     overflow: hidden;
     background-color: #f8f9fa;
 }

 .insight-image>img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.6s ease;
 }

 /* Zoom effect pada gambar saat hover */
 .insight-card:hover .insight-image>img {
     transform: scale(1.1);
 }

 .insight-content {
     padding: 30px;
     flex-grow: 1;
     display: flex;
     flex-direction: column;
 }

 .insight-meta {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-bottom: 20px;
 }

 .insight-meta .tag {
     background-color: rgba(237, 28, 36, 0.08);
     /* Warna soft red dari brand */
     color: #ed1c24;
     padding: 6px 14px;
     border-radius: 50px;
     /* Pill style */
     font-size: 11px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .insight-meta .date {
     color: #999;
     font-size: 13px;
 }

 .insight-content h3 {
     font-size: 20px;
     font-weight: 700;
     color: #1a1a1a;
     margin-bottom: 20px;
     line-height: 1.5;
     /* Limit ke 3 baris teks agar rapi */
     display: -webkit-box;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 .read-more {
     margin-top: auto;
     /* Memaksa tombol ke bawah card */
     color: #1a1a1a;
     font-size: 14px;
     font-weight: 700;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 10px;
     transition: gap 0.3s ease;
 }

 .read-more:hover {
     color: #ed1c24;
     gap: 15px;
     /* Arrow bergeser saat hover */
 }

 .read-more img {
     width: 18px;
     transition: transform 0.3s ease;
 }

 .read-more {
     color: #5480c9;
     font-size: 14px;
     font-weight: 600;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 /* =========================
           FOOTER
        ========================= */
 #footer {
     background-color: #2a2a35;
     color: #989898;
     padding: 80px 0 40px;
 }

 .footer-content {
     display: flex;
     justify-content: space-between;
     gap: 60px;
     margin-bottom: 60px;
 }

 .footer-brand {
     flex: 1;
     max-width: 400px;
 }

 .footer-desc {
     margin-bottom: 30px;
     font-size: 14px;
 }

 .social-links {
     display: flex;
     gap: 16px;
 }

 .social-icon {
     width: 60px;
     height: 60px;
     background-color: #353543;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: background-color 0.3s;
 }

 .social-icon:hover {
     background-color: var(--primary-red);
 }

 .footer-links {
     flex: 1;
     display: flex;
     justify-content: space-between;
     gap: 40px;
 }

 .link-column h4 {
     color: #c7c7c7;
     font-size: 16px;
     margin-bottom: 24px;
 }

 .link-column ul {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .link-column li {
     margin-bottom: 16px;
 }

 .link-column a {
     font-size: 14px;
     transition: color 0.3s;
     display: flex;
     align-items: center;
     gap: 10px;
     color: #989898;
 }

 .link-column a:hover {
     color: white;
 }

 .footer-bottom {
     text-align: center;
 }

 .divider {
     height: 1px;
     background-color: #404040;
     margin-bottom: 30px;
 }

 .footer-bottom p {
     color: #626262;
     font-size: 14px;
 }

 /* RESPONSIVE */
 @media (max-width: 992px) {
     .detail-grid {
         flex-direction: column-reverse;
         gap: 50px;
     }

     .detail-image-box {
         margin: 0 auto;
         width: 100%;
         max-width: 320px;
     }

     /* .nav-links {
                display: none;
            } */
 }

 @media (max-width: 768px) {
     .footer-content {
         flex-direction: column;
     }

     .footer-links {
         flex-wrap: wrap;
     }

     .hero-detail h1 {
         font-size: 36px;
     }

     .detail-image-box::before {
         right: -15px;
         bottom: -15px;
     }
 }

 /* --- Container Utama Modal --- */
 .custom-modal-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(15, 23, 42, 0.6);
     /* Warna overlay lebih elegan (Slate dark) */
     backdrop-filter: blur(6px);
     /* Efek glassmorphism/blur modern */
     -webkit-backdrop-filter: blur(6px);
     z-index: 9999;

     /* Default hidden */
     display: none;
     justify-content: center;
     align-items: center;
 }

 /* Class tambahan saat modal aktif (Bisa di-toggle pakai JS) */
 .custom-modal-overlay.show {
     display: flex;
 }

 /* --- Kotak Modal --- */
 .custom-modal-content {
     background: #ffffff;
     width: 90%;
     max-width: 420px;
     /* Sedikit dirampingkan agar proporsional */
     border-radius: 16px;
     /* Lengkungan lebih modern (Apple-esque) */
     overflow: hidden;
     box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0px 15px rgba(0, 0, 0, 0.05);
     /* Bayangan lebih lembut dan dalam */
     font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
     /* Font stack modern */
     text-align: center;

     /* Animasi Masuk */
     animation: modalPopUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
 }

 /* --- Keyframes Animasi Masuk --- */
 @keyframes modalPopUp {
     0% {
         opacity: 0;
         transform: scale(0.9) translateY(20px);
     }

     100% {
         opacity: 1;
         transform: scale(1) translateY(0);
     }
 }

 /* Wrapper utama */
 .contact-item {
     display: flex;
     align-items: center;
     /* Bisa ganti flex-start kalau alamat terlalu panjang */
     gap: 15px;
     margin-bottom: 6px;
     cursor: pointer;
     transition: all 0.3s ease;
     text-decoration: none;
     /* Biar link di dalamnya bersih */
 }

 /* Base Icon Box */
 .icon-box {
     width: 35px;
     height: 35px;
     background-color: #357575;
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
     flex-shrink: 0;
     transition: all 0.3s ease;
 }

 .icon-box i {
     color: #ffffff;
     font-size: 16px;
 }

 /* Base Text Style */
 .contact-item span {
     font-size: 15px;
     color: #444;
     /* Warna teks normal */
     transition: all 0.3s ease;
 }

 /* =========================================
   HOVER EFFECT (EFEK BARENGAN)
   ========================================= */

 /* 1. Icon melayang dan berubah warna */
 .contact-item:hover .icon-box {
     background-color: #2a5d5d;
     transform: translateY(-3px);
     /* Naik 3 pixel */
     box-shadow: 0 4px 12px rgba(53, 117, 117, 0.3);
 }

 /* 2. Teks berubah warna saat item di-hover */
 .contact-item:hover span {
     color: #357575;
     /* Teks berubah jadi Teal sesuai warna icon */
     transform: translateX(5px);
     /* Geser dikit ke kanan biar dinamis */
 }

 /* --- Header --- */
 .custom-modal-header {
     padding: 30px 20px 10px;
     /* Padding atas lebih besar */
 }

 .custom-modal-header h5 {
     margin: 0;
     font-size: 1.4rem;
     font-weight: 700;
     color: #111827;
     /* Hitam pekat modern */
 }

 /* --- Body --- */
 .custom-modal-body {
     padding: 10px 30px 20px;
     line-height: 1.6;
 }

 .text-subtitle {
     color: #4b5563;
     /* Abu-abu sedang */
     font-size: 1rem;
     margin-bottom: 12px;
     margin-top: 0;
 }

 .text-description {
     font-size: 0.9rem;
     color: #6b7280;
     /* Abu-abu terang */
     margin: 0;
 }

 .text-description strong {
     color: #111827;
     /* Highlight nama brand */
 }

 .policy-link {
     color: #d13a4b;
     /* Warna brand */
     font-weight: 600;
     text-decoration: none;
     transition: color 0.2s ease;
 }

 .policy-link:hover {
     color: #a72d3a;
     text-decoration: underline;
 }

 /* --- Footer & Buttons --- */
 .custom-modal-footer {
     padding: 0 30px 30px;
     display: flex;
     flex-direction: column;
     gap: 12px;
     /* Jarak konsisten antar tombol */
 }

 .btn-accept {
     background-color: #d13a4b;
     /* Warna brand */
     color: white;
     border: none;
     padding: 14px;
     width: 100%;
     font-size: 0.95rem;
     font-weight: 600;
     border-radius: 8px;
     /* Lengkungan tombol modern */
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 4px 6px -1px rgba(209, 58, 75, 0.2), 0 2px 4px -1px rgba(209, 58, 75, 0.1);
 }

 .btn-accept:hover {
     background-color: #b83141;
     transform: translateY(-2px);
     /* Efek melayang sedikit */
     box-shadow: 0 6px 8px -1px rgba(209, 58, 75, 0.3), 0 4px 6px -1px rgba(209, 58, 75, 0.2);
 }

 .btn-accept:active {
     transform: translateY(0);
 }

 .btn-decline {
     background: transparent;
     color: #6b7280;
     border: none;
     padding: 10px;
     width: 100%;
     font-size: 0.9rem;
     font-weight: 500;
     border-radius: 8px;
     cursor: pointer;
     transition: all 0.2s ease;
 }

 .btn-decline:hover {
     background-color: #f3f4f6;
     /* Latar belakang abu-abu sangat muda saat di-hover, lebih elegan dari sekadar garis bawah */
     color: #374151;
 }


 /* ===== CLIENT ALERTS SECTION ===== */
 #client-alerts {
     padding: 100px 0;
     background-color: #ffffff;
     position: relative;
     overflow: hidden;
     z-index: 1;
 }

 /* Container di depan dekorasi */
 #client-alerts .container {
     position: relative;
     z-index: 2;
 }

 /* Section Title */
 

 @media (max-width: 991px) {
     #client-alerts .section-heading {
         white-space: normal;
         width: auto;
         font-size: 28px;
         max-width: 90%;
     }
 }

 /* ===== GRID ===== */
 .client-alerts-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 40px;
 }

 /* ===== CARD ===== */
 .ca-card {
     background: #ffffff;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
     border: 1px solid rgba(0, 0, 0, 0.07);
     height: 100%;
     display: flex;
     flex-direction: column;
     text-decoration: none;
     color: inherit;
 }

 .ca-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
     border-color: rgba(42, 122, 111, 0.15);
     text-decoration: none;
     color: inherit;
 }

 /* Gambar */
 .ca-image {
     position: relative;
     height: 240px;
     overflow: hidden;
     background-color: #f1f5f4;
 }

 .ca-image>img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.6s ease;
 }

 .ca-card:hover .ca-image>img {
     transform: scale(1.08);
 }

 /* Konten */
 .ca-content {
     padding: 28px 30px 30px;
     flex-grow: 1;
     display: flex;
     flex-direction: column;
 }

 /* Meta: hanya tanggal (tanpa tag kategori) */
 .ca-meta {
     display: flex;
     align-items: center;
     margin-bottom: 14px;
 }

 .ca-meta .date {
     color: #999;
     font-size: 13px;
     font-family: 'Inter', sans-serif;
 }

 /* Judul artikel */
 .ca-content h3 {
     font-size: 19px;
     font-weight: 700;
     color: #1a1a1a;
     margin-bottom: 20px;
     line-height: 1.55;
     display: -webkit-box;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
     overflow: hidden;
     font-family: 'Inter', sans-serif;
 }

 /* Link View Detail */
 .ca-read-more {
     margin-top: auto;
     color: #1a1a1a;
     font-size: 14px;
     font-weight: 600;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     transition: color 0.3s ease, gap 0.3s ease;
     font-family: 'Inter', sans-serif;
 }

 .ca-card:hover .ca-read-more {
     color: #2a7a6f;
     gap: 13px;
 }

 .ca-read-more img {
     width: 18px;
     transition: transform 0.3s ease;
 }

 /* ===== VIEW MORE BUTTON ===== */
 .ca-view-more-container {
     text-align: center;
     margin-top: 60px;
 }

 .ca-btn-view-more {
     display: inline-flex;
     align-items: center;
     gap: 0;
     background-color: #2a7a6f;
     color: #ffffff;
     border-radius: 50px;
     padding: 6px 28px 6px 6px;
     font-size: 15px;
     font-weight: 600;
     font-family: 'Inter', sans-serif;
     text-decoration: none;
     transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
     box-shadow: 0 4px 15px rgba(42, 122, 111, 0.25);
 }

 .ca-btn-view-more:hover {
     background-color: #21635a;
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(42, 122, 111, 0.35);
     color: #ffffff;
     text-decoration: none;
 }

 .ca-btn-view-more .icon-circle {
     width: 42px;
     height: 42px;
     background-color: rgba(255, 255, 255, 0.2);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-right: 16px;
     flex-shrink: 0;
     transition: background-color 0.3s ease;
 }

 .ca-btn-view-more:hover .icon-circle {
     background-color: rgba(255, 255, 255, 0.3);
 }

 .ca-btn-view-more .icon-circle img {
     width: 18px;
     filter: brightness(0) invert(1);
 }

 /* Empty state */
 .ca-empty {
     text-align: center;
     padding: 60px 20px;
     color: #aaa;
     font-family: 'Inter', sans-serif;
     grid-column: 1 / -1;
 }

 /* ===== RESPONSIVE ===== */
 @media (max-width: 768px) {
     #client-alerts {
         padding: 70px 0;
     }

     .client-alerts-grid {
         gap: 24px;
         grid-template-columns: 1fr;
     }

     .ca-image {
         height: 200px;
     }

     .ca-content {
         padding: 22px 22px 24px;
     }

     .ca-content h3 {
         font-size: 17px;
     }

     .ca-view-more-container {
         margin-top: 40px;
     }
 }

 .section-title {
    text-align: center; /* Memastikan semua konten di dalamnya berada di tengah */
}

.section-title .section-heading {
    display: block;
    width: 1000px;          /* 1. Ditambah width-nya agar teks memanjang ke samping */
    max-width: 100%;       /* 2. Supaya tetap aman dan tidak meluber di layar HP/Mobile */
    margin: 0 auto;        /* 3. Menjaga posisi kotak teks tetap center di tengah halaman */
    line-height: 1.4;      /* Jarak antar baris agar lebih enak dibaca */
}


