/* ================== PENGATURAN DASAR & FONT ================== */
:root {
    --primary-blue: #0052cc;
    --primary-green: #25D366;
    --dark-text: #222222;
    --light-text: #555555;
    --bg-light: #FFFFFF;
    --container-width: 1140px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* === PERUBAHAN FONT === */
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    background-color: var(--bg-light);
    line-height: 1.6;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ================== HEADER / NAVIGASI (STICKY) ================== */
header {
    padding: 25px 0;
    /* Dibuat sedikit lebih ramping */
    background-color: var(--bg-light);
    border-bottom: 1px solid #f0f0f0;
    /* === TAMBAHAN UNTUK STICKY NAVBAR === */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    /* Efek bayangan saat scroll */
    /* === AKHIR TAMBAHAN === */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 20px;
    color: var(--dark-text);
}

.logo img {
    height: 34px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links li a {
    font-weight: 500;
    color: var(--light-text);
    transition: color 0.3s ease;
}

.nav-links li a.active,
.nav-links li a:hover {
    color: var(--primary-blue);
}

/* ... (kode CSS header Anda yang ada berakhir di sini) ... */

/* ================== TAMBAHAN UNTUK SUB MENU DROPDOWN ================== */

/* 1. Atur 'Layanan' agar bisa menampung dropdown */
.nav-item-dropdown {
    position: relative;
    /* Patokan untuk menu dropdown */
}

/* 2. Style untuk panah kecil */
.small-arrow {
    font-size: 10px;
    /* Perkecil ikon panah */
    margin-left: 6px;
}

/* 3. Sembunyikan menu dropdown secara default */
.dropdown-menu {
    display: none;
    /* Sembunyikan */
    position: absolute;
    /* Posisikan 'melayang' di bawah parent */
    top: 100%;
    /* Mulai tepat di bawah link 'Layanan' */
    left: 0;
    padding: 10px 0;
    /* Beri jarak di atas dan bawah link */
    background-color: var(--bg-light);
    border-radius: 8px;
    /* Gunakan box-shadow yang mirip dengan sticky header Anda */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    /* Samakan dengan border header */
    min-width: 250px;
    /* Lebar minimum agar pas */
    z-index: 1100;
    /* Di atas segalanya */
}

/* 4. Tampilkan dropdown saat 'Layanan' di-hover */
.nav-item-dropdown:hover .dropdown-menu {
    display: block;
    /* Tampilkan */
}

/* 5. Style untuk link di dalam dropdown */
.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    /* Ambil style dasar dari .nav-links li a */
    font-weight: 500;
    color: var(--light-text);
    transition: all 0.3s ease;

    /* Style khusus dropdown */
    display: block;
    /* Buat link mengisi penuh */
    padding: 10px 20px;
    white-space: nowrap;
    /* Jaga agar teks tidak terpotong */
}

/* 6. Efek hover untuk link di dalam dropdown */
.dropdown-menu li a:hover {
    color: var(--primary-blue);
    /* Sesuai style .active Anda */
    background-color: #f8f9fa;
    /* Latar hover abu-abu muda */
}

/* ================== HERO SECTION ================== */
.hero {
    padding: 80px 0;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 44px;
    /* === PERUBAHAN FONT WEIGHT === */
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 30px;
    max-width: 500px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-green);
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 50px;
    /* === PERUBAHAN FONT WEIGHT === */
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #20b056;
}

.hero-image {
    flex: 1;
    text-align: center;
}

/* ================== TAMBAHAN CSS UNTUK HALAMAN TENTANG KAMI ================== */

/* 1. Section "Nilai-Nilai Kami" 
   (Didasarkan pada .services-grid tapi untuk latar belakang terang)
*/
.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    /* Latar abu-abu muda */
}

.values-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 60px;
    /* Jarak dari header section */
}

.value-card {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.value-icon-wrapper {
    /* Mirip .service-icon-wrapper tapi dengan warna primer */
    background-color: var(--primary-blue);
    /* Latar biru */
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.value-icon-wrapper i {
    font-size: 30px;
    color: #FFFFFF;
    /* Ikon putih */
}

.value-text-content {
    flex: 1;
}

.value-card h3 {
    /* Mirip .service-card h3 tapi warna gelap */
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-text);
    /* Teks gelap */
    margin-bottom: 10px;
    line-height: 1.3;
}

.value-card p {
    /* Mirip .service-card p tapi warna gelap */
    font-size: 15px;
    color: var(--light-text);
    /* Teks abu-abu */
    line-height: 1.6;
}


/* 2. Section CTA di Halaman Tentang Kami
*/
.cta-section-tentang {
    padding: 60px 0;
    background-color: var(--bg-light);
    /* Latar putih */
    text-align: center;
}

.cta-section-tentang h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.cta-section-tentang p {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 30px;
}

/* ================== TEAM SECTION (HALAMAN TENTANG) ================== */
.team-section {
    padding: 80px 0;
    background-color: var(--bg-light);
    /* Latar putih */
}

.team-grid {
    display: grid;
    /* Mirip dengan .explore-grid */
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    /* Jarak dari header section */
}

.team-card {
    background-color: #FFFFFF;
    border-radius: 15px;
    /* Mirip shadow .explore-card */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    /* Efek 'mengangkat' saat di-hover */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    /* Membuat foto menjadi bulat */
    object-fit: cover;
    /* Memastikan foto pas */
    margin-bottom: 20px;
    border: 3px solid #f0f0f0;
    /* Opsional: bingkai tipis */
}

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

.team-card .team-role {
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-blue);
    /* Beri warna pada jabatan */
}

/* ================== PERBAIKAN RESPONSIVE (TAMBAHAN) ================== */
@media (max-width: 768px) {
    .values-grid {
        flex-direction: column;
        /* Susun vertikal di HP */
        gap: 40px;
    }

    .value-card {
        /* Tengahkan di HP */
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .team-grid {
        grid-template-columns: 1fr;
        /* 1 kolom di HP */
        gap: 25px;
    }
}

/* ================== SERVICES SECTION (PERUBAHAN BESAR) ================== */
.services {
    background-color: var(--primary-blue);
    color: #FFFFFF;
    padding: 80px 0;
    position: relative;
    /* <-- TAMBAHKAN INI (untuk jadi patokan) */
    overflow: hidden;
    /* <-- TAMBAHKAN INI (agar gambar tidak 'bocor') */
}

.services-layanan {
    background-color: var(--primary-blue);
    color: #FFFFFF;
    padding: 270px 0;
    position: relative;
    /* <-- TAMBAHKAN INI (untuk jadi patokan) */
    overflow: hidden;
    /* <-- TAMBAHKAN INI (agar gambar tidak 'bocor') */
}

.hero-layanan {
    position: absolute;
    /* Membuat gambar 'melayang' */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Memastikan gambar memenuhi section, mirip 'background-size: cover' */
    z-index: 0;
    /* Meletakkan gambar di lapisan paling belakang (di atas background-color) */
}

.services-header {
    /* Dibuat rata kiri sesuai gambar */
    text-align: left;
    max-width: 650px;
    margin: 0 0 60px 0;
    /* Hapus margin auto */
    position: relative;
    /* Membuat konten ini punya lapisan sendiri */
    z-index: 1;
}

.services-header h1 {
    font-size: 44px;
    /* === PERUBAHAN FONT WEIGHT === */
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.services-header .pre-title {
    /* Style untuk kotak "Layanan Kami" */
    display: inline-block;
    padding: 5px 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    font-weight: 500;
    font-size: 14px;
    /* Dikecilkan sedikit */
    margin-bottom: 10px;
    /* Jarak ke H2 */
    opacity: 1;
}


.feature-text .pre-title3 {
    /* Style untuk kotak "Layanan Kami" */
    display: inline-block;
    padding: 5px 12px;
    border: 1px solid rgba(26, 24, 24, 0.5);
    border-radius: 16px;
    font-weight: 500;
    font-size: 14px;
    /* Dikecilkan sedikit */
    margin-bottom: 10px;
    /* Jarak ke H2 */
    opacity: 1;
}

.services-header h2 {
    font-size: 36px;
    /* === PERUBAHAN FONT WEIGHT === */
    font-weight: 700;
    margin-bottom: 15px;
}

.services-header p {
    font-size: 18px;
    opacity: 0.9;
}

.services-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    /* Beri jarak lebih antar kartu */
}

.service-card {
    flex: 1;
    /* Ini kuncinya: Flexbox untuk ikon di samping teks */
    display: flex;
    align-items: flex-start;
    /* Ikon dan teks rata atas */
    gap: 20px;
    /* Jarak antara ikon dan teks */
}

.service-icon-wrapper {
    /* Ikon lingkaran PUTIH */
    background-color: #FFFFFF;
    width: 70px;
    /* Perbesar lingkaran ikon */
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 0;
    /* Tidak perlu margin bottom lagi */
    flex-shrink: 0;
    /* Mencegah ikon menyusut */
}

.service-icon-wrapper i {
    /* Ikon di dalam berwarna BIRU */
    font-size: 30px;
    color: var(--primary-blue);
}

/* Wrapper baru untuk teks di dalam kartu */
.service-text-content {
    flex: 1;
}

.service-card h3 {
    font-size: 20px;
    /* === PERUBAHAN FONT WEIGHT === */
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-card p {
    font-size: 15px;
    /* Sedikit lebih kecil agar pas */
    line-height: 1.5;
    opacity: 0.9;
}


/* ================== FEATURE SECTION ================== */
.feature {
    padding: 80px 0;
}

.feature-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.feature-image {
    flex: 1;
    text-align: center;
}

.feature-text {
    flex: 1;
}

.feature-text h2 {
    font-size: 36px;
    /* === PERUBAHAN FONT WEIGHT === */
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.feature-text p {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 30px;
}

.feature-text ul {
    list-style-type: disc;
    padding-left: 20px;
}

.feature-text ul li {
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 10px;
}

/* ================== EXPLORE SERVICES SECTION ================== */
.explore-services {
    padding: 80px 0;
    background-color: #f8f9fa;
    /* Latar belakang abu-abu muda */
}

/* Header yang di tengah */
.section-header-center {
    text-align: center;
    margin-bottom: 60px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.section-header-center h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.section-header-center p {
    font-size: 18px;
    color: var(--light-text);
    line-height: 1.7;
}

/* Grid untuk card */
.explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 kolom */
    gap: 30px;
}

/* Styling Card */
.explore-card {
    background-color: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    /* Agar gambar mengikuti border-radius */
    display: flex;
    flex-direction: column;
    /* Konten tersusun vertikal */
}

.explore-card-img {
    width: 100%;
    height: auto;
}

.explore-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    /* Membuat konten mengisi sisa ruang card */
}

.explore-card-content .pre-title2 {
    /* Style untuk kotak "Khusus" */
    display: inline-block;
    padding: 1px 12px;
    border: 1px solid rgba(16, 16, 16, 0.5);
    border-radius: 101px;
    font-weight: 500;
    font-size: 13px;
    /* Dikecilkan sedikit */
    margin-bottom: 20px;
    /* Jarak ke H2 */
    opacity: 1;
}

.explore-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-blue);
    /* Sesuai desain (biru) */
    margin-bottom: 10px;
}

.explore-card-content p {
    font-size: 15px;
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
    /* Mendorong footer ke bagian bawah */
}

.explore-card-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.explore-card-price span {
    font-size: 13px;
    color: var(--light-text);
    font-weight: 400;
}

/* Footer di dalam card (button dan panah) */
.explore-card-footer {
    display: flex;
    justify-content: space-between;
    /* Button kiri, panah kanan */
    align-items: center;
    margin-top: auto;
    /* Memastikan footer selalu di bawah */
}

/* Tombol CTA versi kecil */
.cta-button-small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-green);
    color: #FFFFFF;
    padding: 8px 16px;
    /* Lebih kecil dari tombol hero */
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.cta-button-small:hover {
    background-color: #20b056;
    /* Warna hover sama */
}

/* Link panah */
.arrow-link {
    font-size: 24px;
    color: var(--dark-text);
    transition: color 0.3s ease, transform 0.3s ease;
}

.arrow-link:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
    /* Efek geser saat di-hover */
}

/* ================== GET STARTED SECTION ================== */
.get-started {
    padding: 80px 0;
    background-color: var(--bg-light);
    /* Latar belakang putih */
}

/* === PERUBAHAN UNTUK HEADER GET STARTED DENGAN GAMBAR === */
.get-started-header {
    display: flex;
    justify-content: space-between;
    /* Konten kiri, gambar kanan */
    align-items: center;
    margin-bottom: 60px;
    max-width: var(--container-width);
    /* Header bisa lebih lebar */
    text-align: left;
    gap: 40px;
    /* Jarak antara teks dan gambar */
}

.get-started-header .header-content {
    flex: 1;
    /* Konten teks mengambil sisa ruang */
    max-width: 650px;
    /* Batasi lebar teks agar tidak terlalu panjang */
}

.get-started-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.get-started-header p {
    font-size: 18px;
    color: var(--light-text);
    line-height: 1.7;
}

.get-started-header .header-image {
    flex-shrink: 0;
    /* Mencegah gambar menyusut */
    width: 200px;
    /* Sesuaikan lebar gambar sesuai kebutuhan */
    text-align: right;
    /* Agar gambar rata kanan */
}

.get-started-header .header-image img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Hapus spasi di bawah gambar */
}

/* === AKHIR PERUBAHAN HEADER GET STARTED === */


/* Grid 2-kolum untuk langkah-langkah */
.get-started-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 kolom */
    gap: 30px 50px;
    /* Jarak baris 30px, Jarak kolom 50px */
    margin-bottom: 60px;
    /* Jarak ke tombol CTA */
}

/* Styling per langkah */
.step-item {
    display: flex;
    align-items: flex-start;
    /* Rata atas */
    gap: 20px;
    /* Jarak antara angka dan teks */
}

.step-number {
    font-size: 60px;
    font-weight: 700;
    color: #e0e8f5;
    /* Warna angka abu-abu kebiruan (estimasi) */
    line-height: 1;
    /* Paskan tinggi baris */
}

.step-content {
    flex: 1;
    /* Ambil sisa ruang */
}

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

.step-content p {
    font-size: 15px;
    color: var(--light-text);
    line-height: 1.6;
}

/* Tombol CTA Biru di tengah */
.get-started-cta {
    text-align: center;
}

.cta-button-blue {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-blue);
    /* Pakai warna biru utama */
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s ease;
    /* Efek bayangan biru seperti di gambar */
    box-shadow: 0 5px 15px rgba(0, 82, 204, 0.3);
}

.cta-button-blue:hover {
    background-color: #0041a3;
    /* Biru lebih gelap saat hover */
}

/* ================== FOOTER (KODE BARU) ================== */
footer {
    padding: 50px 0 0 0;
    /* Padding atas 50px, padding bawah 0 */
    border-top: 1px solid #f0f0f0;
    background-color: #f8f9fa;
    /* Warna abu-abu muda seperti di gambar */
    position: relative;
    /* Diperlukan untuk elemen di dalamnya */
    overflow: hidden;
    /* PENTING: Ini yang akan "memotong" teks besar */
}

/* Wrapper untuk logo dan paragraf */


.footer-logo {
    /* === PERBAIKAN UKURAN === */
    height: 34px;
    /* Samakan dengan tinggi logo di header */
    margin-bottom: 0;
    /* Hapus margin-bottom, kita pakai gap */
}

footer p {
    /* === PERBAIKAN UKURAN === */
    max-width: 450px;
    font-size: 15px;
    /* Ukuran font yang lebih mudah dibaca */
    color: var(--light-text);
    line-height: 1.6;
}

/* Teks "Codingan Labs" yang besar */
.footer-brand-text {
    font-size: 130px;
    /* Sesuaikan ukurannya jika perlu */
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
    /* PENTING: Kurangi line-height */
    margin: 0;
    transform: translateY(43%);
    /* PENTING: Turunkan teks agar terpotong */
    text-align: left;
    z-index: 1;
}



/* Konten atas (Info & Social) */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-info {
    flex: 1;
    max-width: 450px;
}

.footer-info p {
    font-size: 15px;
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-email {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-text);
    text-decoration: none;
}

.footer-email:hover {
    color: var(--primary-blue);
}

/* Ikon Media Sosial */
.footer-social {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #ddd;
    border-radius: 8px;
    /* Sedikit kotak */
    color: var(--dark-text);
    font-size: 20px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--dark-text);
    color: #FFFFFF;
    border-color: var(--dark-text);
}

/* Garis Pemisah */
.footer-divider {
    border: none;
    height: 1px;
    background-color: #e0e0e0;
    margin: 0 0 30px 0;
}

/* Konten bawah (Copyright) */
.footer-bottom {
    text-align: right;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--light-text);
}

/* ================== RESPONSIVE (Untuk HP) ================== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-container,
    .feature-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        order: -1;
        margin-bottom: 30px;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .services-header {
        text-align: center;
        /* Kembalikan ke tengah di HP */
    }

    .services-grid {
        flex-direction: column;
        gap: 40px;
    }

    .service-card {
        /* Di HP, buat ikon di tengah teks lagi */
        flex-direction: column;
        align-items: center;
        /* Ikon di tengah */
        text-align: center;
    }

    .service-icon-wrapper {
        margin-bottom: 20px;
        /* Beri jarak lagi ke teks */
    }

    .feature-image {
        margin-bottom: 30px;
    }

    .feature-text {
        text-align: left;
    }

    /* === TAMBAHAN RESPONSIVE FOOTER === */
    .footer-top {
        flex-direction: column;
        /* Susun vertikal di HP */
        align-items: center;
        /* Tengahkan */
        text-align: center;
    }

    .footer-brand-text {
        font-size: 50px;
        /* Kecilkan teks besar di HP */
        text-align: center;
        transform: translateY(20%);
    }

    .explore-grid {
        grid-template-columns: 1fr;
        /* Buat jadi 1 kolom di HP */
        gap: 25px;
    }

    .section-header-center {
        margin-bottom: 40px;
    }

    .section-header-left {
        text-align: center;
        /* Tengahkan header di HP */
        margin-bottom: 40px;
    }

    .get-started-grid {
        grid-template-columns: 1fr;
        /* Susun 1 kolom di HP */
        gap: 30px;
    }

    /* === TAMBAHAN UNTUK RESPONSIVE HEADER GET STARTED === */
    .get-started-header {
        flex-direction: column;
        /* Susun vertikal di HP */
        text-align: center;
        gap: 20px;
    }

    .get-started-header .header-content {
        order: 2;
        /* Pindahkan konten teks ke bawah gambar */
        max-width: 100%;
    }

    .get-started-header .header-image {
        order: 1;
        /* Pindahkan gambar ke atas */
        width: 150px;
        /* Kecilkan gambar di HP */
        text-align: center;
        /* Tengahkan gambar */
    }

    /* === AKHIR TAMBAHAN RESPONSIVE HEADER GET STARTED === */

    .get-started-grid {
        grid-template-columns: 1fr;
        /* Susun 1 kolom di HP */
        gap: 30px;
    }
}


/* ================== DETAILED SERVICES SECTION ================== */
.detailed-services {
    padding: 80px 0;
    background-color: #f8f9fa;
    /* Latar belakang cerah */
}

.detailed-service-group {
    background-color: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin-bottom: 30px;
}

.detailed-service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 20px;
    margin-bottom: 30px;
    gap: 20px;
}

.detailed-service-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-text);
    flex: 1;
}

.detailed-service-header p {
    font-size: 14px;
    color: var(--light-text);
    flex: 1;
    text-align: right;
}

.detailed-service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 30px 20px;
}

.ds-item {
    text-align: center;
    cursor: pointer;
}

.ds-item .ds-icon {
    width: 65px;
    height: 65px;
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-blue);
    margin: 0 auto 15px auto;
    transition: all 0.3s ease;
    background-color: transparent;
}

.ds-item:hover .ds-icon {
    background-color: var(--primary-green);
    color: #FFFFFF;
    border-color: var(--primary-green);
    transform: translateY(-5px);
}

.ds-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
    display: block;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .detailed-service-header {
        flex-direction: column;
        text-align: center;
    }

    .detailed-service-header p {
        text-align: center;
    }

    .detailed-service-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================== CONTACT SECTION ================== */
.contact-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.contact-grid {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item i {
    font-size: 24px;
    color: var(--primary-green);
    background: #e8f9eb;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-info-text h3 {
    font-size: 18px;
    color: var(--dark-text);
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-info-text p,
.contact-info-text a {
    color: var(--light-text);
    font-size: 15px;
    text-decoration: none;
}

.contact-form {
    flex: 1.5;
    background: #FFFFFF;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-blue);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--primary-blue);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #0041a3;
}

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

/* ================== FAQ SECTION ================== */
.faq-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 32px;
    font-weight: 500;
    color: var(--dark-text);
}

.faq-header h2 span {
    font-weight: 700;
}

.faq-header .divider {
    width: 60px;
    height: 2px;
    background-color: var(--primary-blue);
    margin: 20px auto 0;
}

.faq-container {
    width: 100%;
    margin: 0 auto;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
}

.faq-item:last-child {
    border-bottom: none;
}

/* Checkbox Hack Animasi FAQ */
.faq-toggle {
    display: none;
}

.faq-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 16px;
    font-weight: 600;
    color: var(--light-text);
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-toggle:checked~.faq-summary {
    color: var(--primary-blue);
}

.faq-summary .icon-minus {
    display: none;
}

.faq-toggle:checked~.faq-summary .icon-plus {
    display: none;
}

.faq-toggle:checked~.faq-summary .icon-minus {
    display: inline-block;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

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

.faq-toggle:checked~.faq-content {
    max-height: 250px;
    padding: 0 25px 25px 25px;
    opacity: 1;
}

/* ================== TOP BAR ================== */
.top-bar {
    background-color: var(--primary-blue);
    color: #FFFFFF;
    font-size: 13px;
    height: 38px;
    transition: height 0.4s ease-in-out, opacity 0.4s ease-in-out;
    overflow: hidden;
}

.top-bar.hidden {
    height: 0;
    opacity: 0;
}

.top-bar-inner {
    height: 38px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.top-bar-right {
    display: flex;
    gap: 30px;
}

.top-bar-right span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .top-bar-inner {
        justify-content: center;
    }
}

/* ================== FONT OVERRIDES ================== */
h1 {
    font-family: 'Poppins', sans-serif !important;
}

h2,
p {
    font-family: 'Poppins', sans-serif !important;
}

/* ================== PRICING SECTION ================== */
.pricing-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-header h2 {
    font-size: 32px;
    color: var(--dark-text);
    margin-bottom: 10px;
    font-weight: 600;
}

.pricing-header p {
    font-size: 18px;
    color: var(--light-text);
}

.pricing-table-wrapper {
    overflow-x: auto;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.pricing-table th,
.pricing-table td {
    border: 1px solid #eaeaea;
    padding: 20px 15px;
    text-align: center;
    vertical-align: middle;
}

.pricing-table th {
    background-color: #fcfcfc;
    padding: 30px 15px;
}

.pricing-table th.feature-col {
    background-color: #f1f1f1;
    font-weight: 600;
    color: var(--dark-text);
}

.pricing-table .feature-col {
    text-align: left;
    width: 28%;
    font-weight: 500;
    color: var(--dark-text);
    background-color: #fafafa;
}

.pricing-table th .plan-name {
    color: var(--primary-blue);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.pricing-table th .plan-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-text);
}

.pricing-table th .plan-duration {
    font-size: 13px;
    color: var(--light-text);
    font-weight: 400;
    margin-top: 3px;
}

.pricing-table td {
    font-size: 14px;
    color: var(--light-text);
}

.pricing-table .info-icon {
    color: #cccccc;
    font-size: 13px;
    margin-left: 5px;
    cursor: help;
}

.pricing-table .check-icon {
    color: var(--primary-green);
    font-size: 18px;
}

.pricing-table .text-blue {
    color: var(--primary-blue);
}

.pricing-table td strong {
    color: var(--dark-text);
}

.pricing-table tfoot td {
    padding: 30px 15px;
    background-color: #ffffff;
}

.order-btn {
    display: inline-block;
    background-color: var(--primary-green);
    color: #ffffff;
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.order-btn:hover {
    background-color: #1ebc5a;
    color: #ffffff;
}

.detail-btn {
    background: #ffffff;
    border: 1px solid #dddddd;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--light-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-btn:hover {
    background: #f5f5f5;
}

@media (max-width: 768px) {
    .pricing-table-wrapper {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
}

/* ================== ABOUT PROFILE SECTION ================== */
.about-profile {
    padding: 85px 0;
    background-color: #FFFFFF;
}

.about-profile-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-profile-image {
    flex: 1;
}

.about-profile-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.about-profile-text {
    flex: 1;
}

.about-profile-text h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 25px;
    line-height: 1.35;
    font-family: 'Poppins', sans-serif;
}

.about-profile-text p {
    font-size: 15px;
    color: var(--light-text);
    line-height: 1.85;
    margin-bottom: 20px;
    text-align: justify;
}

.about-profile-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .about-profile-container {
        flex-direction: column;
        gap: 40px;
    }
}

/* ================== CONTACT PAGE NEW LAYOUT ================== */
.contact-page-new {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-top-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.contact-top-left,
.contact-top-right {
    flex: 1;
}

.contact-top-right {
    max-width: 450px;
    padding-top: 15px;
}

.contact-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
}

.contact-location .based-in {
    font-size: 14px;
    color: #999;
}

.contact-location h2 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
}

.contact-email-box .prob-text {
    font-size: 18px;
    color: #999;
    margin-bottom: 8px;
    line-height: 1.5;
}

.contact-email-box .prob-text strong {
    color: #000;
    font-weight: 600;
}

.contact-email-box .prob-text a {
    color: #000;
    text-decoration: underline;
}

.contact-email-box .wa-link {
    font-size: 13px;
    color: #000;
    font-weight: 600;
}

.contact-top-right p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}

.contact-image-large {
    margin-bottom: 60px;
}

.contact-image-large img,
.contact-image-large video {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

.contact-socials-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.socials-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.social-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 160px;
    padding: 25px;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    background-color: #fff;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.social-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border-color: #ddd;
}

.social-card i {
    font-size: 22px;
    color: #000;
}

.social-card span {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

@media (max-width: 991px) {
    .contact-top-layout {
        flex-direction: column;
        gap: 40px;
    }

    .contact-top-right {
        max-width: 100%;
        padding-top: 0;
    }

    .socials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .socials-grid {
        grid-template-columns: 1fr;
    }
}

/* ================== PARTNERSHIP SECTION ================== */
.partnership-section {
    padding: 85px 0;
    /* very light blue tint matching modern vibes */
}

.partnership-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.partnership-content {
    flex: 1;
}

.partnership-content h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 20px;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
}

.partnership-content p {
    font-size: 15px;
    color: var(--light-text);
    line-height: 1.85;
    margin-bottom: 20px;
    text-align: justify;
}

.partnership-content p:last-child {
    margin-bottom: 0;
}

.partnership-image {
    flex: 1;
    text-align: center;
}

.partnership-image img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    .partnership-container {
        flex-direction: column-reverse;
        /* image on top on mobile */
        gap: 40px;
    }
}

/* ================== ORDER FORM SECTION ================== */
.order-form-section {
    padding: 85px 0;
    background-color: #fbfcff;
}

.order-form-container {
    max-width: 850px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.form-step {
    margin-bottom: 40px;
}

.form-step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--dark-text);
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.radio-card {
    position: relative;
    display: block;
    cursor: pointer;
}

.radio-card input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-card .card-content {
    display: block;
    padding: 20px;
    border: 2px solid #eaeaea;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
    background-color: #fafafa;
    height: 100%;
}

.radio-card .card-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0;
}

.radio-card .card-content p {
    font-size: 14px;
    color: var(--light-text);
    margin-top: 5px;
    margin-bottom: 0;
}

.radio-card input:checked~.card-content {
    border-color: var(--primary-blue);
    background-color: #f0f7ff;
    box-shadow: 0 5px 15px rgba(0, 82, 204, 0.1);
}

.radio-card input:checked~.card-content h4 {
    color: var(--primary-blue);
}

.form-action {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #eaeaea;
}

.btn-wa-order {
    background-color: #25D366;
    color: #fff;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-wa-order:hover {
    background-color: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

@media (max-width: 576px) {
    .order-form-container {
        padding: 25px;
    }

    .options-grid {
        grid-template-columns: 1fr;
    }
}

/* ================== TEMPLATE SECTION ================== */
.template-section {
    padding: 80px 0;
    background-color: #fbfcff;
}

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

.template-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.template-card:hover {
    transform: translateY(-5px);
}

.template-img-placeholder {
    height: 180px;
    background: linear-gradient(135deg, #e0eafc, #cfdef3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.template-img-placeholder span {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 16px;
    opacity: 0.8;
}

.template-info {
    padding: 25px 20px;
    text-align: center;
}

.template-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.select-btn {
    background-color: var(--primary-blue);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.select-btn:hover {
    background-color: #0041a3;
}

button.cta-button-small,
button.order-btn {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* ================== CHECKOUT SECTION ================== */
.checkout-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.checkout-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    border: 1px solid #eaeaea;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.checkout-header {
    text-align: center;
    margin-bottom: 30px;
}

.checkout-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.checkout-header p {
    color: var(--light-text);
}

.checkout-form .form-group {
    margin-bottom: 20px;
}

.checkout-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-text);
}

.checkout-form select,
.checkout-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
}

.checkout-form select:focus,
.checkout-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 2px rgba(0, 82, 204, 0.1);
}

.checkout-action {
    margin-top: 30px;
    text-align: center;
}

.btn-whatsapp {
    background-color: var(--primary-green);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.btn-whatsapp i {
    font-size: 18px;
    margin-right: 8px;
}

.btn-whatsapp:hover {
    background-color: #1aae50;
}

\n

/* ================== ORDER FLOW & SLIDER ================== */
.order-hero {
    background: #0044cc;
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.order-hero h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.order-hero p {
    font-size: 16px;
    opacity: 0.9;
}

.order-flow-section {
    padding: 60px 0 100px 0;
    background-color: #fcfcfc;
}

.stepper-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
    max-width: 800px;
    margin-inline: auto;
}

.stepper-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: #e0e0e0;
    z-index: 1;
    transform: translateY(-50%);
}

.step {
    background: #fff;
    border: 3px solid #e0e0e0;
    color: #999;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.step.active {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    box-shadow: 0 0 10px rgba(0, 82, 204, 0.2);
}

.slides-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
}

.slide {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.slide.active-slide {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-header {
    text-align: center;
    margin-bottom: 40px;
}

.slide-header h2 {
    font-size: 28px;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.slide-header p {
    color: var(--light-text);
}

.slide-form-group {
    max-width: 500px;
    margin: 0 auto 40px auto;
}

.slide-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 16px;
}

.order-select {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fdfdfd;
    outline: none;
    transition: border-color 0.3s ease;
}

.order-select:focus {
    border-color: var(--primary-blue);
}

.slide-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    border-top: 1px solid #eaeaea;
    padding-top: 25px;
}

#slide-1 .slide-actions {
    justify-content: flex-end;
}

.btn-next,
.btn-prev,
.btn-whatsapp {
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-next {
    background-color: var(--primary-blue);
    color: #fff;
}

.btn-next:hover {
    background-color: #003da6;
}

.btn-next:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.btn-prev {
    background-color: #f1f1f1;
    color: #555;
}

.btn-prev:hover {
    background-color: #e4e4e4;
}

.btn-whatsapp {
    background-color: var(--primary-green);
    color: #fff;
}

.btn-whatsapp:hover {
    background-color: #1ebc5a;
}

.order-pricing-wrapper {
    margin-bottom: 20px;
}

.order-pricing-wrapper .order-btn {
    cursor: pointer;
}

.template-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.template-card {
    position: relative;
    border: 2px solid #eaeaea;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.template-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.template-card h4 {
    padding: 15px;
    text-align: center;
    color: var(--dark-text);
    margin: 0;
    font-size: 16px;
}

.template-card:hover {
    border-color: #ccc;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.template-card.selected {
    border-color: var(--primary-blue);
    box-shadow: 0 5px 20px rgba(0, 82, 204, 0.2);
}

.check-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
}

.template-card.selected .check-overlay {
    opacity: 1;
    transform: scale(1);
}

.order-summary {
    max-width: 500px;
    margin: 0 auto;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #eaeaea;
    padding: 25px;
}

.summary-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.summary-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.summary-label {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.summary-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
}

@media (max-width: 768px) {
    .stepper-indicator {
        flex-direction: column;
        gap: 15px;
    }

    .stepper-indicator::before {
        display: none;
    }

    .step {
        text-align: center;
    }

    .template-grid {
        grid-template-columns: 1fr;
    }

    .slide-actions {
        flex-direction: column-reverse;
        gap: 15px;
    }

    .btn-next,
    .btn-prev,
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

/* ================== TESTIMONIAL SECTION ================== */
.testimonials {
    background-color: #fcfcfc;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
    justify-content: center;
}

.testimonial-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 350px;
    max-width: 400px;
    margin: 0 auto;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: rgba(0, 82, 204, 0.05);
}

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

.testimonial-user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f4ff;
}

.testimonial-user h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: var(--dark-text);
}

.testimonial-user span {
    display: block;
    font-size: 13px;
    color: var(--light-text);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    color: #f59e0b;
    font-size: 14px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    font-style: italic;
    margin-bottom: 25px;
    flex-grow: 1;
}

.testimonial-project {
    padding-top: 20px;
    border-top: 1px solid #f1f3f5;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 30px;
    }
}

/* ================================================================
   COMPREHENSIVE MOBILE RESPONSIVE SYSTEM
   ================================================================ */

/* ================== HAMBURGER MENU BUTTON ================== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1200;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: var(--dark-text);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-origin: center;
}

.hamburger-line:nth-child(1) {
    margin-bottom: 5px;
}

.hamburger-line:nth-child(2) {
    margin-bottom: 5px;
}

/* Hamburger → X transform */
.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ================== NAV OVERLAY ================== */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1050;
    opacity: 0;
    transition: opacity 0.35s ease;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

.nav-overlay.active {
    opacity: 1;
}

/* ================== TABLET BREAKPOINT (max-width: 991px) ================== */
@media (max-width: 991px) {

    /* Show hamburger */
    .hamburger {
        display: flex;
    }

    .nav-overlay {
        display: block;
        pointer-events: none;
    }

    .nav-overlay.active {
        pointer-events: auto;
    }

    /* Mobile Side Nav */
    .nav-links {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        height: 100dvh;
        background-color: #ffffff;
        padding: 90px 0 40px 0;
        gap: 0;
        z-index: 1100;
        overflow-y: auto;
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        -webkit-overflow-scrolling: touch;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        border-bottom: 1px solid #f2f3f5;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links li a {
        display: block;
        padding: 16px 28px;
        font-size: 16px;
        font-weight: 500;
        color: var(--dark-text);
        transition: background-color 0.2s, color 0.2s;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        background-color: #f0f7ff;
        color: var(--primary-blue);
    }

    /* Mobile dropdown behavior */
    .nav-item-dropdown {
        position: relative;
    }

    .nav-item-dropdown .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 28px;
        cursor: pointer;
    }

    .nav-item-dropdown .dropdown-toggle .small-arrow {
        transition: transform 0.3s ease;
    }

    .nav-item-dropdown.mobile-open .dropdown-toggle .small-arrow {
        transform: rotate(180deg);
    }

    .nav-item-dropdown .dropdown-menu {
        display: none;
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        min-width: 100%;
        padding: 0;
        background-color: #f8f9fb;
    }

    .nav-item-dropdown.mobile-open .dropdown-menu {
        display: block;
    }

    .nav-item-dropdown .dropdown-menu li a {
        padding: 14px 28px 14px 44px;
        font-size: 15px;
        color: var(--light-text);
    }

    /* Disable hover-open on mobile */
    .nav-item-dropdown:hover .dropdown-menu {
        display: none;
    }

    .nav-item-dropdown.mobile-open:hover .dropdown-menu {
        display: block;
    }

    /* Header adjustments */
    header {
        padding: 16px 0;
    }

    /* Top bar adjustments */
    .top-bar-right {
        gap: 15px;
        font-size: 12px;
    }

    /* Hero */
    .hero {
        padding: 50px 0;
    }

    .hero-text h1 {
        font-size: 30px;
    }

    .hero-text p {
        font-size: 16px;
    }

    /* Services section */
    .services {
        padding: 60px 0;
    }

    .services-header h2 {
        font-size: 28px;
    }

    .services-header p {
        font-size: 16px;
    }

    .services-layanan {
        padding: 180px 0;
    }

    .services-header h1 {
        font-size: 30px;
    }

    /* Section headers */
    .section-header-center h2 {
        font-size: 28px;
    }

    .section-header-center p {
        font-size: 16px;
    }

    /* Feature section */
    .feature {
        padding: 50px 0;
    }

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

    /* Explore grid - 2 columns on tablet */
    .explore-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Get Started */
    .get-started {
        padding: 50px 0;
    }

    .get-started-header h2 {
        font-size: 28px;
    }

    /* Contact */
    .contact-section {
        padding: 50px 0;
    }

    /* FAQ */
    .faq-section {
        padding: 50px 0;
    }

    /* Pricing */
    .pricing-section {
        padding: 50px 0;
    }

    /* Footer */
    .footer-brand-text {
        font-size: 80px;
    }

    /* Testimonials */
    .testimonials {
        padding: 50px 0;
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Detailed Services */
    .detailed-services {
        padding: 50px 0;
    }

    /* Values */
    .values-section {
        padding: 50px 0;
    }

    /* About profile */
    .about-profile {
        padding: 50px 0;
    }

    /* Partnership */
    .partnership-section {
        padding: 50px 0;
    }

    /* Contact Page New */
    .contact-title {
        font-size: 32px;
    }
}

/* ================== SMARTPHONE BREAKPOINT (max-width: 768px) ================== */
@media (max-width: 768px) {

    /* Global container padding */
    .container {
        padding: 0 16px;
    }

    /* Top bar */
    .top-bar {
        font-size: 11px;
        height: 34px;
    }

    .top-bar-inner {
        height: 34px;
        justify-content: center;
    }

    .top-bar-right {
        gap: 12px;
    }

    .top-bar-right span {
        font-size: 11px;
    }

    /* Header */
    header {
        padding: 12px 0;
    }

    .logo img {
        height: 28px;
    }

    /* Hero */
    .hero {
        padding: 40px 0;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-image {
        order: -1;
        margin-bottom: 0;
    }

    .hero-image img {
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-text h1 {
        font-size: 26px;
        line-height: 1.35;
    }

    .hero-text p {
        font-size: 15px;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .cta-button {
        padding: 12px 22px;
        font-size: 15px;
    }

    /* Services */
    .services {
        padding: 50px 0;
    }

    .services-header {
        text-align: center;
        margin: 0 0 40px 0;
    }

    .services-header h2 {
        font-size: 24px;
    }

    .services-header p {
        font-size: 15px;
    }

    .services-grid {
        flex-direction: column;
        gap: 30px;
    }

    .service-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .service-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .service-icon-wrapper i {
        font-size: 24px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 14px;
    }

    /* Services Layanan hero */
    .services-layanan {
        padding: 120px 0;
    }

    .services-header h1 {
        font-size: 24px;
    }

    /* Feature */
    .feature {
        padding: 40px 0;
    }

    .feature-container {
        flex-direction: column;
        gap: 30px;
    }

    .feature-image {
        margin-bottom: 0;
    }

    .feature-image img {
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }

    .feature-text {
        text-align: left;
    }

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

    .feature-text p {
        font-size: 15px;
    }

    .feature-text ul li {
        font-size: 14px;
    }

    /* Explore grid */
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .explore-card-content {
        padding: 20px;
    }

    .explore-card-content h3 {
        font-size: 18px;
    }

    .explore-card-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    /* Section headers */
    .section-header-center {
        margin-bottom: 35px;
    }

    .section-header-center h2 {
        font-size: 24px;
    }

    .section-header-center p {
        font-size: 15px;
    }

    /* Get Started */
    .get-started {
        padding: 40px 0;
    }

    .get-started-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        margin-bottom: 40px;
    }

    .get-started-header .header-content {
        order: 2;
        max-width: 100%;
    }

    .get-started-header .header-image {
        order: 1;
        width: 120px;
        text-align: center;
    }

    .get-started-header h2 {
        font-size: 24px;
    }

    .get-started-header p {
        font-size: 15px;
    }

    .get-started-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .step-number {
        font-size: 44px;
    }

    .step-content h3 {
        font-size: 18px;
    }

    .step-content p {
        font-size: 14px;
    }

    /* Footer */
    footer {
        padding: 40px 0 0 0;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
        margin-bottom: 25px;
    }

    .footer-info {
        max-width: 100%;
    }

    .footer-info p {
        max-width: 100%;
    }

    .footer-brand-text {
        font-size: 50px;
        text-align: center;
        transform: translateY(20%);
    }

    .footer-brand-text img {
        max-width: 80%;
    }

    /* Contact */
    .contact-section {
        padding: 40px 0;
    }

    .contact-grid {
        flex-direction: column;
        gap: 30px;
    }

    .contact-form {
        padding: 25px;
    }

    .form-group input,
    .form-group textarea {
        padding: 13px;
        font-size: 14px;
    }

    /* Contact Page New */
    .contact-page-new {
        padding: 50px 0;
    }

    .contact-top-layout {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }

    .contact-top-right {
        max-width: 100%;
        padding-top: 0;
    }

    .contact-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .contact-location h2 {
        font-size: 22px;
    }

    .contact-email-box .prob-text {
        font-size: 16px;
    }

    .contact-image-large {
        margin-bottom: 40px;
    }

    .contact-image-large img,
    .contact-image-large video {
        max-height: 300px;
        border-radius: 10px;
    }

    .socials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .social-card {
        height: 130px;
        padding: 20px;
    }

    /* FAQ */
    .faq-section {
        padding: 40px 0;
    }

    .faq-header h2 {
        font-size: 26px;
    }

    .faq-summary {
        padding: 16px 18px;
        font-size: 14px;
    }

    .faq-content p {
        font-size: 14px;
    }

    .faq-toggle:checked~.faq-content {
        padding: 0 18px 20px 18px;
    }

    /* Pricing */
    .pricing-section {
        padding: 40px 0;
    }

    .pricing-header h2 {
        font-size: 26px;
    }

    .pricing-table-wrapper {
        border-radius: 0;
        border-left: none;
        border-right: none;
        margin: 0 -16px;
    }

    /* About Profile */
    .about-profile {
        padding: 40px 0;
    }

    .about-profile-container {
        flex-direction: column;
        gap: 30px;
    }

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

    .about-profile-text p {
        font-size: 14px;
    }

    /* Values */
    .values-section {
        padding: 40px 0;
    }

    .values-grid {
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
    }

    .value-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .value-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .value-icon-wrapper i {
        font-size: 24px;
    }

    .value-card h3 {
        font-size: 18px;
    }

    .value-card p {
        font-size: 14px;
    }

    /* Team */
    .team-section {
        padding: 40px 0;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }

    .team-card {
        padding: 25px 15px;
    }

    .team-card img {
        width: 90px;
        height: 90px;
    }

    .team-card h3 {
        font-size: 16px;
    }

    .team-card .team-role {
        font-size: 13px;
    }

    /* Partnership */
    .partnership-section {
        padding: 40px 0;
    }

    .partnership-container {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .partnership-content h2 {
        font-size: 26px;
    }

    .partnership-content p {
        font-size: 14px;
    }

    .partnership-image img {
        max-width: 250px;
        margin: 0 auto;
        display: block;
    }

    /* CTA section tentang */
    .cta-section-tentang {
        padding: 40px 0;
    }

    .cta-section-tentang h2 {
        font-size: 24px;
    }

    .cta-section-tentang p {
        font-size: 15px;
    }

    /* Detailed services */
    .detailed-services {
        padding: 40px 0;
    }

    .detailed-service-group {
        padding: 25px;
    }

    .detailed-service-header {
        flex-direction: column;
        text-align: center;
    }

    .detailed-service-header p {
        text-align: center;
    }

    .detailed-service-header h3 {
        font-size: 20px;
    }

    .detailed-service-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
    }

    .ds-item .ds-icon {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }

    .ds-item span {
        font-size: 12px;
    }

    /* Order form */
    .order-form-section {
        padding: 50px 0;
    }

    .order-form-container {
        padding: 25px;
    }

    .options-grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials */
    .testimonials {
        padding: 40px 0;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        margin-top: 35px;
    }

    .testimonial-card {
        padding: 25px;
        min-height: auto;
    }

    .testimonial-card::before {
        font-size: 30px;
        top: 15px;
        right: 20px;
    }

    .testimonial-user img {
        width: 50px;
        height: 50px;
    }

    .testimonial-user h4 {
        font-size: 16px;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.7;
    }

    /* CTA buttons */
    .cta-button-blue {
        padding: 11px 22px;
        font-size: 14px;
    }

    /* Stepper / Order flow */
    .stepper-indicator {
        flex-direction: column;
        gap: 15px;
    }

    .stepper-indicator::before {
        display: none;
    }

    .step {
        text-align: center;
    }

    .template-grid {
        grid-template-columns: 1fr;
    }

    .slide-actions {
        flex-direction: column-reverse;
        gap: 15px;
    }

    .btn-next,
    .btn-prev,
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }

    .slides-container {
        padding: 25px;
    }

    /* Wizard (pemesanan) */
    .wizard-header h1 {
        font-size: 24px;
    }

    .wizard-header p {
        font-size: 14px;
    }

    .pricing-grid-wizard {
        grid-template-columns: 1fr;
    }

    .price-card-wizard {
        padding: 25px;
    }

    .price-card-wizard h3 {
        font-size: 20px;
    }

    .price-tag {
        font-size: 22px;
    }

    .price-features li {
        font-size: 14px;
    }

    /* Order hero */
    .order-hero {
        padding: 40px 0;
    }

    .order-hero h1 {
        font-size: 26px;
    }

    .order-hero p {
        font-size: 14px;
    }
}

/* ================== SMALL PHONE BREAKPOINT (max-width: 576px) ================== */
@media (max-width: 576px) {
    .container {
        padding: 0 14px;
    }

    /* Top bar - hide secondary info */
    .top-bar-right {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .top-bar-right span {
        font-size: 10px;
    }

    /* Hero */
    .hero-text h1 {
        font-size: 22px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .hero-image img {
        max-width: 220px;
    }

    .cta-button {
        padding: 11px 20px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    /* Services */
    .services-header h2 {
        font-size: 22px;
    }

    .services-layanan {
        padding: 90px 0;
    }

    .services-header h1 {
        font-size: 20px;
    }

    /* Section headers */
    .section-header-center h2 {
        font-size: 22px;
    }

    /* Explore cards */
    .explore-card-content h3 {
        font-size: 16px;
    }

    /* Team grid - single column on very small screens */
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-card img {
        width: 80px;
        height: 80px;
    }

    /* Socials grid */
    .socials-grid {
        grid-template-columns: 1fr;
    }

    /* Contact info items */
    .contact-info-item i {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    /* FAQ */
    .faq-summary {
        padding: 14px 15px;
        font-size: 13px;
    }

    /* Footer */
    .footer-brand-text {
        font-size: 36px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    /* Wizard */
    .wizard-header h1 {
        font-size: 20px;
    }

    .company-input-group {
        padding: 20px;
    }

    .company-input {
        font-size: 15px;
        padding: 12px 15px;
    }

    /* Contact page */
    .contact-title {
        font-size: 24px;
    }

    .contact-location h2 {
        font-size: 20px;
    }

    /* Detailed services */
    .detailed-service-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px 10px;
    }

    .ds-item .ds-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .ds-item span {
        font-size: 11px;
    }

    /* Values */
    .value-icon-wrapper {
        width: 55px;
        height: 55px;
    }

    .value-icon-wrapper i {
        font-size: 22px;
    }
}

/* ================== VERY SMALL PHONE (max-width: 380px) ================== */
@media (max-width: 380px) {
    .container {
        padding: 0 12px;
    }

    .hero-text h1 {
        font-size: 20px;
    }

    .hero-text p {
        font-size: 13px;
    }

    .services-header h2 {
        font-size: 20px;
    }

    .section-header-center h2 {
        font-size: 20px;
    }

    .feature-text h2 {
        font-size: 20px;
    }

    .get-started-header h2 {
        font-size: 20px;
    }

    .step-number {
        font-size: 36px;
    }

    .faq-summary {
        font-size: 12px;
        padding: 12px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .footer-brand-text {
        font-size: 28px;
    }

    /* Pricing table scroll hint */
    .pricing-table-wrapper {
        position: relative;
    }

    .pricing-table-wrapper::after {
        content: 'Geser →';
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 11px;
        color: var(--primary-blue);
        background: #f0f7ff;
        padding: 4px 10px;
        border-radius: 12px;
        font-weight: 600;
        pointer-events: none;
        animation: pulseHint 2s ease-in-out infinite;
    }

    @keyframes pulseHint {

        0%,
        100% {
            opacity: 1;
        }

        50% {
            opacity: 0.4;
        }
    }
}

/* ================== TOUCH DEVICE IMPROVEMENTS ================== */
@media (hover: none) and (pointer: coarse) {

    /* Larger tap targets */
    .cta-button,
    .cta-button-small,
    .cta-button-blue,
    .select-btn,
    .order-btn,
    .submit-btn,
    .btn-wa-order,
    .btn-next,
    .btn-prev,
    .btn-whatsapp {
        min-height: 48px;
    }

    .faq-summary {
        min-height: 54px;
    }

    /* Disable hover effects */
    .explore-card:hover,
    .team-card:hover,
    .testimonial-card:hover,
    .social-card:hover,
    .template-card:hover,
    .price-card-wizard:hover {
        transform: none;
    }

    /* Remove arrow-link hover translate */
    .arrow-link:hover {
        transform: none;
    }
}

/* ================== LANDSCAPE PHONE ================== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 30px 0;
    }

    .hero-container {
        flex-direction: row;
        text-align: left;
    }

    .hero-image {
        order: 0;
    }

    .hero-image img {
        max-width: 200px;
    }

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

    .hero-text p {
        font-size: 14px;
        margin-left: 0;
        margin-right: 0;
    }

    .nav-links {
        padding-top: 60px;
    }
}

/* ================== SAFE AREA (NOTCHED PHONES) ================== */
@supports (padding: env(safe-area-inset-bottom)) {
    footer {
        padding-bottom: env(safe-area-inset-bottom);
    }

    .nav-links {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* ================== SMOOTH SCROLLING ================== */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* ================== PRINT FRIENDLY ================== */
@media print {

    .hamburger,
    .nav-overlay,
    .top-bar {
        display: none !important;
    }

    .nav-links {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        width: auto !important;
        height: auto !important;
        box-shadow: none !important;
        padding: 0 !important;
    }
}


/* Added for Poppins -0.05em letter spacing */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
input,
select,
textarea {
    letter-spacing: -0.05em;
}

/* Global button weight setup */
button,
input[type="submit"],
input[type="button"],
.cta-button,
.cta-button-blue,
.cta-button-small,
.btn-login,
.order-btn,
.select-btn,
.back-btn,
.submit-btn,
.btn {
    font-weight: 300 !important;
}

/* ================== SERVICES HERO MODERN (2 COLUMN) ================== */
.services-hero-modern {
    background-color: #f4f9ff;
    padding: 100px 0;
    color: #111827;
}

.hero-modern-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-modern-left {
    flex: 1;
    max-width: 550px;
}

.hero-modern-left h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
}

.hero-modern-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 36px;
    font-weight: 400;
}

.hero-modern-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-modern-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ece3d0;
    color: #111827;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600 !important;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.btn-modern-primary:hover {
    background-color: #dfd4bd;
    color: #111827;
    transform: translateY(-1px);
}

.btn-modern-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #ffffff;
    color: #111827;
    padding: 14px 28px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600 !important;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease-in-out;
}

.btn-modern-secondary:hover {
    border-color: #d1d5db;
    background-color: #f9fafb;
    transform: translateY(-1px);
}

.hero-modern-divider {
    width: 1px;
    align-self: stretch;
    border-left: 1px dashed #d1d5db;
}

.hero-modern-right {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.feature-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #111827;
    font-size: 18px;
    margin-top: 4px;
    flex-shrink: 0;
}

.feature-text-modern h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.feature-text-modern p {
    font-size: 15px;
    line-height: 1.5;
    color: #6b7280;
}

/* ================== RESPONSIVE HERO MODERN ================== */
@media (max-width: 991px) {
    .hero-modern-container {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
    }

    .hero-modern-left,
    .hero-modern-right {
        max-width: 100%;
        width: 100%;
    }

    .hero-modern-left h1 {
        font-size: 40px;
    }

    .hero-modern-subtitle {
        font-size: 18px;
    }

    .hero-modern-divider {
        width: 100%;
        height: 1px;
        border-left: none;
        border-top: 1px dashed #d1d5db;
        align-self: auto;
    }
}

@media (max-width: 576px) {
    .services-hero-modern {
        padding: 60px 0;
    }

    .hero-modern-left h1 {
        font-size: 32px;
    }

    .hero-modern-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-modern-primary,
    .btn-modern-secondary {
        width: 100%;
        justify-content: center;
    }
}