/* ========================= */
/* STYLE NAVBAR */
/* ========================= */
      /* --- 1. PENGATURAN WARNA & FONT --- */
       :root {
    --warna-tombol: #FF4500;
    --warna-teks-tombol: #ffffff;
    --warna-teks-menu: #333333;
    --warna-garis: #e0e0e0;
    --font-utama: Arial, sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-utama);
    background-color: #f9f9f9;
}

/* --- 2. STRUKTUR NAVBAR --- */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    padding: 1px 24px;
    border-bottom: 1px solid var(--warna-garis);
    height: 80px;          /* tinggi navbar tetap */
    overflow: visible;
}

/* --- BAGIAN LOGO GAMBAR --- */
.logo-container {
    display: flex;
    align-items: center;
    position: relative;
}

.logo-img {
    height: 150px;
    width: auto;
    display: block;
    object-fit: contain;

    /* memperbesar tanpa mengubah navbar */
    transform: scale(1.3);
    transform-origin: left center;
}

        /* Kolom Pencarian */
        .search-container {
            flex: 1;
            max-width: 400px; 
            margin: 0 20px;
        }

        .search-input {
            width: 90%;
            padding: 8px 16px;
            border: 1px solid #cccccc;
            border-radius: 20px; 
            font-size: 14px;
            outline: none;
        }

        /* Menu dan Tombol Kanan */
        .menu-container {
            display: flex;
            align-items: center;
            gap: 20px; 
        }

        .menu-item {
            text-decoration: none;
            color: var(--warna-teks-menu);
            font-size: 14px;
            font-weight: 500;
        }

        .menu-item:hover {
            color: var(--warna-tombol); 
        }

        /* Tombol Utama */
        .btn-utama {
            background-color: var(--warna-tombol);
            color: var(--warna-teks-tombol);
            border: none;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
        }

        .btn-utama:hover {
            opacity: 0.9;
        }

/* Tombol hamburger (mobile) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    padding: 10px;
    border: 1px solid var(--warna-garis);
    border-radius: 10px;
    background-color: #ffffff;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 1002;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #333333;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-active .nav-toggle-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-active .nav-toggle-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.is-active {
    display: block;
    opacity: 1;
}

body.nav-open {
    overflow: hidden;
}
 
/* SLIDER */

.slider-container{
    width:100%;
    overflow:hidden;
    position:relative;
}

.slider{
    display:flex;
    transition:0.5s;
}

.slide{
    min-width:100%;
}

.slide img{
    width:100%;
    height:450px;
    object-fit:cover;
}

.prev,
.next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:red;
    color:white;
    border:none;
    padding:15px;
    cursor:pointer;
    font-size:20px;
}

.prev{
    left:10px;
}

.next{
    right:10px;
}

/* TENTANG */

.container{
    display: flex;
    align-items: center;
    width: 100%;
}

.text{
    width: 40%;
    padding: 148px;
    background: #f5f5f5;
}

.text h1{
    color: red;
    font-size: 60px;
    line-height: 60px;
}

.text p{
    font-size: 22px;
    line-height: 35px;
}

.gambar{
    width: 60%;
}

.gambar img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
}


 /* --- CSS KHUSUS WIDGET OUR VALUES (ANTI-BENTROK) --- */
        
        .ov-section-wrapper {
            font-family: 'Inter', sans-serif;
            width: 100%;
            background-color: #ffffff;
            display: flex;
        }

        /* Reset lokal khusus di dalam wrapper */
        .ov-section-wrapper *, 
        .ov-section-wrapper *::before, 
        .ov-section-wrapper *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* --- SISI KIRI: FOTO & JUDUL UTAMA --- */
        .ov-left-side {
            flex: 1;
            max-width: 35%; /* Proporsi area kiri */
            display: flex;
            flex-direction: column;
            background-color: #ffffff;
        }

        .ov-image-container {
            width: 100%;
            height: auto;
            aspect-ratio: 4 / 3; /* Menjaga proporsi foto mas-mas baju batik */
            overflow: hidden;
        }

        .ov-profile-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .ov-title-container {
            padding: 60px 40px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .ov-main-title {
            color: #e11d24;
            font-size: 3rem;
            font-weight: 800;
            letter-spacing: -1px;
            line-height: 1;
        }

        /* Tombol lingkaran merah dengan panah putih */
        .ov-arrow-button {
            background-color: #e11d24;
            color: #ffffff;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            flex-shrink: 0;
        }

        /* --- SISI KANAN: KONTEN MERAH (2 KOLOM VALUE) --- */
        .ov-right-side {
            flex: 2;
            background-color: #e11d24; /* Background merah dominan */
            color: #ffffff;
            padding: 60px 50px;
            display: grid;
            grid-template-columns: 1fr 1fr; /* Membagi jadi 2 kolom */
            gap: 40px 50px;
            align-content: start;
        }

        /* Box untuk setiap poin value */
        .ov-card {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        /* Mengatur agar poin ke-5 (Pelayanan Profesional) memanjang penuh jika dibutuhkan */
        .ov-card-fullwidth {
            grid-column: 1 / -1; /* Membentang 2 kolom */
            max-width: 90%;
        }

        .ov-card-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: #ffffff;
        }

        .ov-card-text {
            font-size: 0.95rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9); /* Putih agak transparan agar nyaman dibaca */
            text-align: justify;
        }

        /* Garis pemisah horizontal putih tipis */
        .ov-divider {
            grid-column: 1 / -1;
            border: 0;
            height: 1px;
            background-color: rgba(255, 255, 255, 0.3);
            margin: 10px 0;
        }

        /* --- RESPONSIVE UNTUK LAYAR HP / TABLET --- */
        @media (max-width: 992px) {
            .ov-section-wrapper {
                flex-direction: column; /* Menjadi tumpukan vertikal ke bawah */
            }
            .ov-left-side {
                max-width: 100%;
            }
            .ov-title-container {
                padding: 40px 20px;
            }
            .ov-main-title {
                font-size: 2.5rem;
            }
            .ov-right-side {
                grid-template-columns: 1fr; /* Menjadi 1 kolom saja di HP */
                padding: 40px 20px;
                gap: 30px;
            }
            .ov-card-fullwidth {
                max-width: 100%;
            }
            .ov-divider {
                display: none; /* Menyembunyikan garis pembatas di HP agar tidak terlalu penuh */
            }
        }



/*layanan*/
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        /* Mengisolasi reset dasar agar hanya berlaku di dalam container katalog */
        .ks-full-page-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            width: 100%;
            height: 100vh; /* 100% dari tinggi viewport */
            background-color: #000000;
            font-family: Arial, sans-serif;
        }

        /* Reset lokal agar elemen di dalam tidak terpengaruh CSS global web Anda */
        .ks-full-page-container *, 
        .ks-full-page-container *::before, 
        .ks-full-page-container *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* ==================== KIRI ATAS: GAMBAR MESIN ==================== */
        .ks-box-top-left {
            grid-column: 1 / 2;
            grid-row: 1 / 2;
            background-image: url('mesin.png'); 
            background-size: cover;
            background-position: center;
        }

        /* ==================== KANAN ATAS: LIST PRODUK ==================== */
        .ks-box-top-right {
            grid-column: 2 / 3;
            grid-row: 1 / 2;
            background-color: #d31212; /* Merah sesuai brosur */
            color: #ffffff;
            padding: 5% 6%; /* Menggunakan persentase agar adaptif */
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .ks-products-header {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: calc(1.2rem + 1vw); /* Teks dinamis sesuai ukuran layar */
            font-weight: bold;
            margin-bottom: 4%;
            text-transform: lowercase;
        }

        /* Container gambar lingkaran */
        .ks-arrow-image-container {
            width: 60px;
            height: 60px;
            display: inline-flex;
            justify-content: center;
            align-items: center;
        }

        .ks-arrow-image-container img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .ks-products-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4% 6%;
        }

        .ks-product-item h3 {
            font-size: calc(0.9rem + 0.4vw);
            margin-bottom: 6px;
            font-weight: bold;
            color: #ffffff;
        }

        .ks-product-item p {
            font-size: calc(0.75rem + 0.2vw);
            line-height: 1.4;
            opacity: 0.9;
            color: #ffffff;
        }

        /* ==================== KIRI BAWAH: DATA PROSES ==================== */
        .ks-box-bottom-left {
            grid-column: 1 / 2;
            grid-row: 2 / 3;
            background-color: #ffffff;
            padding: 6% 8%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .ks-process-title h2 {
            color: #d31212;
            font-size: calc(1.8rem + 1vw);
            font-weight: bold;
            margin-bottom: 2px;
            display: flex;
            align-items: baseline;
        }

        .ks-process-title h2 span.ks-number {
            font-size: calc(1rem + 0.5vw);
            margin-right: 15px;
            border-bottom: 2px solid #d31212;
            padding-bottom: 2px;
            color: #d31212;
        }

        .ks-capacity-text {
            color: #d31212;
            font-size: calc(0.8rem + 0.3vw);
            font-weight: bold;
            text-decoration: underline;
            display: block;
            margin-bottom: 4%;
        }

        .ks-process-desc {
            color: #444444;
            font-size: calc(0.85rem + 0.3vw);
            line-height: 1.5;
            max-width: 85%;
        }

        /* Menggeser isi footer proses ke ujung kanan area putih */
        .ks-process-footer {
            display: flex;
            align-items: center;
            justify-content: flex-end; 
            gap: 12px;
        }

        .ks-process-footer span {
            color: #d31212;
            font-size: calc(1.1rem + 0.5vw);
            font-weight: bold;
            text-transform: lowercase;
        }

        /* ==================== KANAN BAWAH: KOLASE HASIL PRODUK ==================== */
        .ks-box-bottom-right {
            grid-column: 2 / 3;
            grid-row: 2 / 3;
            background-image: url('baju.png'); 
            background-size: cover;
            background-position: center;
        }

        /* ==================== RESPONSIVE KHUSUS MOBILE ==================== */
        @media (max-width: 992px) {
            .ks-full-page-container {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: auto auto;
                height: auto;
                min-height: auto;
            }

            .ks-box-top-left,
            .ks-box-bottom-right {
                min-height: 280px;
            }
        }

        @media (max-width: 768px) {
            .ks-full-page-container {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
                height: auto;
            }

            .ks-box-top-left,
            .ks-box-top-right,
            .ks-box-bottom-left,
            .ks-box-bottom-right {
                grid-column: 1;
                grid-row: auto;
            }

            .ks-box-top-left,
            .ks-box-bottom-right {
                min-height: 45vh;
            }

            .ks-box-top-left { order: 1; }
            .ks-box-top-right { order: 2; padding: 40px 30px; }
            .ks-box-bottom-left { order: 3; padding: 40px 30px; gap: 40px; }
            .ks-box-bottom-right { order: 4; }
            
            .ks-products-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        
  

        /* --- CSS KHUSUS WIDGET PROSES (ANTI-BENTROK & BISA DITINDIH) --- */
           .ptx-section-container, .ptx-section-container * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            -webkit-font-smoothing: antialiased;
        }

        /* Container Utama Grid */
        .ptx-section-container {
            display: grid;
            grid-template-columns: 1fr;
            width: 100%;
            min-height: 480px;
            background-color: #ffffff;
            overflow: hidden;
        }

        /* Layout Desktop */
        @media (min-width: 768px) {
            .ptx-section-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* --- SISI KIRI (KONTEN TEKS) --- */
        .ptx-left-side {
            display: flex;
            flex-direction: column;
            justify-content: space-between; /* Header di atas, konten di bawah */
            padding: 50px 0px 60px 60px;
            background-color: #ffffff;
        }

        /* Pembungkus "the process" */
        .ptx-header-wrapper {
            display: flex;
            justify-content: flex-end;
            width: 100%;
        }

        /* Komponen "the process" dengan jarak dari pembatas merah */
        .ptx-process-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-right: 25px; /* MEMBERIKAN SEDIKIT JARAK DARI GAMBAR MERAH */
            text-decoration: none;
        }

        /* SVG Lingkaran Panah */
        .ptx-arrow-icon {
            width: 36px;
            height: 36px;
            flex-shrink: 0;
            display: block;
        }

        /* Teks "the process" */
        .ptx-process-text {
            font-size: 38px;
            font-weight: bold;
            color: #d10000;
            letter-spacing: -2px;
            line-height: 1;
            text-transform: lowercase;
        }

        /* Area Konten Bawah (02 Sablon DTF) */
        .ptx-content-body {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-top: 40px;
            padding-right: 40px;
        }

        /* Angka 02 Bergaris Bawah */
        .ptx-number-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .ptx-main-number {
            font-size: 24px;
            font-weight: bold;
            color: #d10000;
            line-height: 1;
        }

        .ptx-number-line {
            width: 100%;
            height: 2px;
            background-color: #d10000;
            margin-top: 6px;
        }

        /* Blok Teks Detail */
        .ptx-text-block {
            display: flex;
            flex-direction: column;
        }

        .ptx-main-title {
            font-size: 42px;
            font-weight: bold;
            color: #d10000;
            line-height: 1;
            letter-spacing: -1px;
            margin-bottom: 4px;
        }

       

        .ptx-sub-info {
            font-size: 16px;
            font-weight: bold;
            color: #d10000;
            line-height: 1;
        }

        .ptx-info-line {
            width: 100%;
            height: 2px;
            background-color: #d10000;
            margin-top: 4px;
        }

        /* Deskripsi Paragraf */
        .ptx-main-desc {
            font-size: 18px;
            color: #555555;
            line-height: 1.5;
            max-width: 380px;
            font-weight: 400;
        }

        /* --- SISI KANAN (1 GAMBAR UTUH BLOK MERAH + PRODUK) --- */
        .ptx-right-side-image {
            background-color: #d10000;
            /* SILAKAN GANTI URL DI BAWAH INI DENGAN LINK GAMBAR BLOK MERAH ANDA */
            background-image: url('merah.png');
            background-size: cover;
            background-position: center;
            min-height: 380px;
        }

        /* Responsif Layar Mobile / Handphone */
        @media (max-width: 767px) {
            .ptx-section-container {
                min-height: auto;
            }

            .ptx-left-side {
                padding: 40px 20px;
            }
            .ptx-header-wrapper {
                justify-content: flex-start; /* Di layar HP kembali rata kiri agar rapi */
            }
            .ptx-process-badge {
                margin-right: 0;
            }
            .ptx-content-body {
                padding-right: 0;
                flex-wrap: wrap;
            }
            .ptx-process-text {
                font-size: 28px;
            }
            .ptx-main-title {
                font-size: 32px;
            }
            .ptx-main-desc {
                font-size: 16px;
                max-width: 100%;
            }
            .ptx-right-side-image {
                min-height: 280px;
            }
        }
       
       
/* Lokasi*/
  /* --- CSS KHUSUS WIDGET LOKASI KAMI (AMAN DARI BENTROK) --- */
        
        /* Memastikan font pembungkus utama menggunakan Inter tanpa merusak body global */
        .lk-main-wrapper {
            font-family: 'Inter', sans-serif;
            background-color: #ffffff;
            width: 100%;
        }

        /* Memastikan box-sizing aman untuk elemen di dalam wrapper */
        .lk-main-wrapper *, 
        .lk-main-wrapper *::before, 
        .lk-main-wrapper *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* --- BAGIAN HEADER BANNER --- */
        .lk-header-banner {
            background-color: #e11d24; /* Warna merah dominan */
            color: #ffffff;
            padding: 40px 10%;
            display: flex;
            align-items: center;
            gap: 20px;
            width: 100%;
        }

        .lk-header-banner h1 {
            color: #ffffff !important; /* Memaksa warna putih jika ada bentrok h1 global */
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -1px;
        }

        /* Lingkaran panah putih */
        .lk-arrow-circle {
            background-color: #ffffff;
            color: #e11d24;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: bold;
            transform: rotate(45deg);
            flex-shrink: 0;
        }

        /* --- BAGIAN GRID LOKASI --- */
        .lk-container {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
        }

        .lk-location-grid {
            display: grid;
            /* Membuat kolom sejajar otomatis responsif */
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 40px 30px;
        }

        .lk-location-item {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        /* Bagian Judul Kota (Icon + Nama) */
        .lk-location-title {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #e11d24;
            font-size: 1.6rem;
            font-weight: 700;
        }

        /* Icon Pin Lokasi SVG */
        .lk-pin-icon {
            width: 24px;
            height: 24px;
            fill: #e11d24;
            flex-shrink: 0;
        }

        /* Bagian Teks Alamat */
        .lk-location-address {
            font-size: 0.95rem;
            line-height: 1.5;
            color: #222222;
        }

        /* Responsive khusus Handphone */
        @media (max-width: 992px) {
            .lk-header-banner h1 {
                font-size: 2.8rem;
            }

            .lk-location-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .lk-header-banner {
                flex-direction: column;
                align-items: flex-start;
                padding: 30px 5%;
            }
            .lk-header-banner h1 {
                font-size: 2.5rem;
            }
            .lk-location-grid {
                grid-template-columns: 1fr;
            }
            .lk-container {
                margin: 30px auto;
                padding: 0 16px;
            }
        }
        /*printing solution*/
         .pts-section-container {
            font-family: 'Inter', sans-serif;
            display: flex;
            align-items: center;
            width: 100%;
            max-width: 1200px;
            background-color: #ffffff;
            margin: 40px auto;
            padding: 40px 20px;
            gap: 50px;
        }

        /* Reset lokal khusus di dalam kontainer PTS */
        .pts-section-container *, 
        .pts-section-container *::before, 
        .pts-section-container *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* --- SISI KIRI: JUDUL UTAMA BESAR --- */
        .pts-left-title {
            flex: 1;
            max-width: 40%;
        }

        .pts-main-heading {
            color: #e11d24; /* Warna merah sesuai brand */
            font-size: calc(2.5rem + 1vw); /* Ukuran teks dinamis dan proporsional */
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -1.5px;
        }

        /* --- SISI KANAN: DESKRIPSI (TULISAN KECIL) --- */
        .pts-right-description {
            flex: 1.5;
        }

        .pts-small-text {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #000000; /* DIUBAH JADI HITAM sesuai permintaan Anda */
            text-align: justify;
        }

        /* Gaya khusus untuk teks yang diberi garis bawah merah */
        .pts-highlight-link {
            color: #e11d24;
            text-decoration: underline;
            font-weight: 700;
        }

            /* --- CSS KHUSUS WIDGET KAOS PREMIUM (ANTI-BENTROK & TANPA BAYANGAN) --- */
        
        /* Kontainer Utama - Bersih Tanpa Bayangan */
        .kp-main-card-container {
            font-family: 'Inter', sans-serif;
            display: flex;
            width: 100%;
            max-width: 1200px;
            min-height: 480px;
            background-color: #ffffff;
            margin: 40px auto; /* Memberi jarak atas-bawah agar tidak mepet elemen lain */
            overflow: hidden;
        }

        /* Reset lokal agar tidak rusak oleh CSS global web Anda */
        .kp-main-card-container *, 
        .kp-main-card-container *::before, 
        .kp-main-card-container *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* --- SISI KIRI: DETAIL TEKS --- */
        .kp-text-section {
            flex: 1.1;
            padding: 60px 5% 50px 6%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* Area Judul (Angka + Teks Utama) */
        .kp-title-group {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .kp-badge-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: #e11d24;
            position: relative;
            line-height: 1.2;
        }

        /* Garis bawah merah tipis di bawah angka 03 */
        .kp-badge-number::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 100%;
            height: 2px;
            background-color: #e11d24;
        }

        .kp-main-title {
            font-size: 3rem;
            font-weight: 800;
            color: #e11d24;
            line-height: 1.1;
            letter-spacing: -1px;
        }

        /* produk layanan */
        *{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ========================= */
/* BODY */
/* ========================= */
body{
    font-family:Arial, sans-serif;
    background:#ffffff;
    color:#222;
}

/* ========================= */
/* FULL PAGE */
/* ========================= */
.printex-section{
    width:100%;
    min-height:100vh;
    display:flex;
    flex-direction:column;
}

/* ========================= */
/* BAGIAN ATAS */
/* ========================= */
.printex-top{
    flex:1;
    background:#f3f3f3;
    padding:60px 80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:50px;
}

/* ========================= */
/* KIRI */
/* ========================= */
.printex-left{
    flex:1;
    min-width:300px;
}

/* ========================= */
/* LOGO */
/* ========================= */
.printex-logo{
    width:200px;
    height: 200px;
    margin-bottom:40px;
}

.printex-logo img{
    width:100%;
    display:block;
}

/* ========================= */
/* TITLE */
/* ========================= */
.printex-title{
    display:flex;
    align-items:center;
    gap:25px;
}

.printex-title h1{
    font-size:90px;
    line-height:0.9;
    color:#e00000;
    font-weight:bold;
}

/* ========================= */
/* GAMBAR PANAH */
/* ========================= */
.printex-arrow{
    width:80px;
    height:80px;
}

.printex-arrow img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

/* ========================= */
/* KANAN */
/* ========================= */
.printex-right{
    flex:1;
    min-width:300px;
    display:flex;
    justify-content:flex-end;
}

/* ========================= */
/* DESKRIPSI */
/* ========================= */
.printex-desc{
    max-width:420px;
    color:#000000;
    font-size:16px;
    line-height:2;
    text-align:justify;
}

/* ========================= */
/* BAGIAN BAWAH */
/* ========================= */
.printex-services{
    background:#e00000;
    padding:70px 80px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:50px;
}

/* ========================= */
/* CARD */
/* ========================= */
.printex-card{
    color:#fff;
    transition:0.3s;
}

.printex-card h3{
    font-size:35px;
    margin-bottom:25px;
}

.printex-card p{
    font-size:16px;
    line-height:2;
    text-align:justify;
}

/* ========================= */
/* HOVER */
/* ========================= */
.printex-card:hover{
    transform:translateY(-5px);
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */
@media(max-width:992px){

    .printex-top{
        padding:50px;
    }

    .printex-services{
        padding:50px;
    }

    .printex-title h1{
        font-size:70px;
    }

}

@media(max-width:768px){

    .printex-top{
        flex-direction:column;
        align-items:flex-start;
        padding:40px 25px;
    }

    .printex-services{
        padding:40px 25px;
    }

    .printex-title{
        gap:15px;
    }

    .printex-title h1{
        font-size:52px;
    }

    .printex-arrow{
        width:60px;
        height:60px;
    }

    .printex-desc{
        max-width:100%;
        font-size:14px;
    }

    .printex-card h3{
        font-size:28px;
    }

    .printex-card p{
        font-size:14px;
    }

}

        /* Deskripsi Paragraf */
        .kp-paragraph-desc {
            font-size: 1.05rem;
            line-height: 1.6;
            color: #444444;
            margin-top: 25px;
            margin-left: 48px;
            max-width: 460px;
            text-align: justify;
        }

        /* --- SISI KANAN: DISPLAY GAMBAR --- */
        .kp-image-section {
            flex: 1.2;
            background-color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px 40px 30px 10px;
            position: relative;
        }

        /* Pembungkus gambar tunggal agar fleksibel */
        .kp-picture-holder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Elemen gambar yang bisa diganti-ganti - Tanpa Bayangan */
        .kp-showcase-img {
            max-width: 100%;
            max-height: 420px;
            object-fit: contain;
        }
/* FOOTER */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ========================= */
/* FOOTER PRINTEX */
/* ========================= */

.printex-footer{
    background:#0f1014;
    color:#ffffff;
    padding:50px 8%;
    font-family:Arial, sans-serif;
    position:relative;
    overflow:hidden;
}

/* Background efek */

.printex-footer::before{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    border-radius:50%;
    border:1px solid rgba(255,0,0,0.12);
    left:-180px;
    bottom:-180px;
}

.printex-footer::after{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    background:
    radial-gradient(red 2px, transparent 2px);
    background-size:18px 18px;
    opacity:0.08;
    right:-80px;
    top:0;
}

/* ========================= */
/* CONTAINER */
/* ========================= */

.printex-container{
    display:grid;
    grid-template-columns:
    1.5fr
    1fr
    1fr
    1.2fr;

    gap:55px;
    position:relative;
    z-index:2;
}

/* ========================= */
/* LOGO */
/* ========================= */

.printex-logo{
    width:90px;
    margin-bottom:18px;
}

.printex-logo img{
    width:100%;
    display:block;
    object-fit:contain;
}

/* ========================= */
/* TEXT LOGO */
/* ========================= */

.printex-logo-text{
    width:230px;
    margin-bottom:15px;
}

.printex-logo-text img{
    width:100%;
    display:block;
    object-fit:contain;
}

/* ========================= */
/* DESKRIPSI */
/* ========================= */

.printex-desc{
    color:#000000;
    line-height:1.9;
    margin-bottom:35px;
    max-width:420px;
}

/* ========================= */
/* FITUR */
/* ========================= */

.printex-feature{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}



/* ========================= */
/* JUDUL */
/* ========================= */

.printex-title{
    font-size:28px;
    margin-bottom:30px;
    position:relative;
}

.printex-title::after{
    content:"";
    width:60px;
    height:3px;
    background:#ff0000;
    position:absolute;
    left:0;
    bottom:-10px;
}

/* ========================= */
/* MENU */
/* ========================= */

.printex-links{
    list-style:none;
}

.printex-links li{
    margin-bottom:18px;
}

.printex-links a{
    color:#d8d8d8;
    text-decoration:none;
    transition:0.3s;
}

.printex-links a:hover{
    color:#ff0000;
    padding-left:8px;
}

/* ========================= */
/* KONTAK */
/* ========================= */

.printex-contact{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.printex-contact-item{
    display:flex;
    gap:10px;
    color:#d8d8d8;
    line-height:1.7;
}

.printex-contact-item i{
    color:#ff0000;
    margin-top:5px;
}

/* ========================= */
/* NEWSLETTER */
/* ========================= */

.printex-newsletter{
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.08);
    padding:30px;
    border-radius:24px;
    backdrop-filter:blur(8px);
}

.printex-newsletter p{
    color:#bdbdbd;
    line-height:1.8;
    margin-bottom:25px;
}

.printex-form{
    display:flex;
    gap:12px;
}

.printex-form input{
    flex:1;
    height:55px;
    border:none;
    outline:none;
    background:#1a1c22;
    border-radius:12px;
    padding:0 18px;
    color:#fff;
}

.printex-form button{
    border:none;
    background:#ff0000;
    color:#fff;
    padding:0 28px;
    border-radius:12px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.printex-form button:hover{
    background:#d90000;
}

/* ========================= */
/* BOTTOM */
/* ========================= */

.printex-bottom{
    margin-top:60px;
    padding-top:30px;
    border-top:1px solid rgba(255,255,255,0.08);

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;

    position:relative;
    z-index:2;
}

.printex-copy{
    color:#9d9d9d;
}

.printex-social{
    display:flex;
    gap:15px;
}

.printex-social a{
    width:45px;
    height:45px;
    background:#1a1c22;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    text-decoration:none;
    transition:0.3s;
}

.printex-social a:hover{
    background:#ff0000;
    transform:translateY(-4px);
}
/* Styling untuk bungkus tautan (link) */
.printex-social .social-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;         /* Lebar area ikon */
    height: 45px;        /* Tinggi area ikon */
    border-radius: 50%;  /* Membuat background menjadi bulat sempurna */
    background-color: #f0f0f0; /* Warna background default sebelum di-hover */
    transition: all 0.3s ease; /* Efek transisi halus saat di-hover */
}

/* Styling khusus untuk gambar di dalam link */
.printex-social .social-item img {
    width: 24px;         /* Ukuran lebar gambar/ikon */
    height: 24px;        /* Ukuran tinggi gambar/ikon */
    object-fit: contain; /* Memastikan gambar tidak penyet/distorsi */
}

/* Efek interaktif saat kursor diarahkan (Hover) */
.printex-social .social-item:hover {
    background-color: #ff0d0d; /* Berubah warna latar belakang saat di-hover */
    transform: translateY(-3px); /* Efek sedikit terangkat ke atas */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Memberikan bayangan halus */
}
/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:1100px){

    .printex-container{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:700px){

    .printex-footer{
        padding:60px 25px;
    }

    .printex-container{
        grid-template-columns:1fr;
    }

    .printex-feature{
        grid-template-columns:1fr;
    }

    .printex-form{
        flex-direction:column;
    }

    .printex-form button{
        height:55px;
    }

    .printex-bottom{
        flex-direction:column;
        text-align:center;
    }

}

/* ========================= */
/* RESPONSIVE GLOBAL (SEMUA HALAMAN) */
/* ========================= */

img {
    max-width: 100%;
    height: auto;
}

.hero-batik-banner {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* --- Navbar: tablet (search tetap tampil) --- */
@media (max-width: 1100px) and (min-width: 769px) {
    .navbar {
        flex-wrap: wrap;
        height: auto;
        min-height: 80px;
        padding: 12px 20px;
        gap: 12px;
    }

    .search-container {
        flex: 1;
        max-width: 320px;
        margin: 0 12px;
    }

    .search-input {
        width: 100%;
    }

    .menu-container {
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 12px;
    }
}

/* --- Navbar: mobile (search disembunyikan, menu hamburger) --- */
@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        height: auto;
        min-height: 88px;
        padding: 10px 16px;
        gap: 12px;
        position: relative;
        z-index: 1001;
    }

    .search-container {
        display: none;
    }

    .logo-container {
        flex: 1;
        min-width: 0;
        justify-content: flex-start;
    }

    .logo-img {
        height: 120px;
        width: auto;
        max-width: none;
        transform: scale(1.2);
        transform-origin: left center;
    }

    .nav-toggle {
        display: flex;
    }

    .menu-container {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        position: fixed;
        top: 0;
        right: 0;
        width: min(300px, 88vw);
        height: 100vh;
        height: 100dvh;
        padding: 110px 24px 32px;
        background-color: #ffffff;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
        transform: translateX(100%);
        transition: transform 0.35s ease;
        z-index: 1001;
        overflow-y: auto;
    }

    .menu-container.is-open {
        transform: translateX(0);
    }

    .menu-item {
        display: block;
        padding: 16px 0;
        font-size: 16px;
        border-bottom: 1px solid var(--warna-garis);
        background: transparent;
        border-radius: 0;
    }

    .menu-item:hover {
        color: var(--warna-tombol);
        background-color: transparent;
    }

    .btn-utama {
        margin-top: 24px;
        width: 100%;
        padding: 14px 20px;
        font-size: 14px;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 115px;
        transform: scale(1.15);
    }

    .nav-toggle {
        width: 44px;
        height: 44px;
    }

    .nav-toggle-bar {
        width: 22px;
    }
}

/* --- Slider --- */
@media (max-width: 992px) {
    .slide img {
        height: 360px;
    }
}

@media (max-width: 768px) {
    .slide img {
        height: 280px;
    }

    .prev,
    .next {
        padding: 10px 12px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .slide img {
        height: 220px;
    }
}

/* --- Seksi Tentang (.container) --- */
@media (max-width: 992px) {
    .container {
        flex-direction: column;
    }

    .text {
        width: 100%;
        padding: 60px 40px;
    }

    .text h1 {
        font-size: 48px;
        line-height: 1.05;
    }

    .text p {
        font-size: 18px;
        line-height: 1.6;
    }

    .gambar {
        width: 100%;
    }

    .gambar img {
        height: 55vh;
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .text {
        padding: 40px 24px;
    }

    .text h1 {
        font-size: 36px;
    }

    .text p {
        font-size: 16px;
        line-height: 1.55;
    }

    .gambar img {
        height: 45vh;
        min-height: 260px;
    }
}

@media (max-width: 480px) {
    .text {
        padding: 32px 18px;
    }

    .text h1 {
        font-size: 30px;
    }

    .text p {
        font-size: 15px;
    }
}

/* --- Printing Textile Solution --- */
@media (max-width: 992px) {
    .pts-section-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding: 30px 20px;
        margin: 30px auto;
    }

    .pts-left-title {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .pts-section-container {
        padding: 24px 16px;
        gap: 20px;
    }

    .pts-main-heading {
        font-size: 2.2rem;
    }

    .pts-small-text {
        font-size: 1rem;
    }
}

/* --- Hero batik banner --- */
@media (max-width: 992px) {
    .hero-batik-banner {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .hero-batik-banner {
        height: 240px;
    }
}

@media (max-width: 480px) {
    .hero-batik-banner {
        height: 180px;
    }
}

/* --- Kaos Premium --- */
@media (max-width: 992px) {
    .kp-main-card-container {
        flex-direction: column;
        min-height: auto;
    }

    .kp-text-section {
        padding: 50px 5% 40px 6%;
    }

    .kp-image-section {
        padding: 20px 5% 50px;
    }

    .kp-main-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .kp-text-section {
        padding: 40px 24px;
    }

    .kp-main-title {
        font-size: 2rem;
    }

    .kp-paragraph-desc {
        margin-left: 0;
        max-width: 100%;
        font-size: 1rem;
    }

    .kp-image-section {
        padding: 10px 24px 40px;
    }

    .kp-showcase-img {
        max-height: 300px;
    }
}

/* --- Pelayanan: judul Produk Layanan (hindari bentrok footer) --- */
.printex-section .printex-title {
    display: flex;
    align-items: center;
    gap: 25px;
}

.printex-section .printex-title h1 {
    font-size: 90px;
    line-height: 0.9;
    color: #e00000;
    font-weight: bold;
}

.printex-footer .printex-title {
    display: block;
    font-size: 28px;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .printex-section .printex-title h1 {
        font-size: 70px;
    }
}

@media (max-width: 768px) {
    .printex-section .printex-title {
        gap: 15px;
    }

    .printex-section .printex-title h1 {
        font-size: 52px;
    }
}

/* --- Kontak: form & kartu (dipindah dari inline agar konsisten) --- */
.hk-section-wrapper {
    font-family: 'Inter', sans-serif;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 10px auto;
    padding: 20px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hk-section-wrapper *,
.hk-section-wrapper *::before,
.hk-section-wrapper *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.hk-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #e0e0e0;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #0b2f23;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.hk-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
}

.hk-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0b2f23;
    margin-bottom: 35px;
    line-height: 1.1;
    width: 100%;
}

.hk-title-underline {
    position: relative;
    display: inline-block;
}

.hk-title-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 4px;
    background-color: #10b981;
}

.hk-form-card {
    background-color: #f8faf9;
    border: 1px solid #eef2f0;
    border-top: 3px solid #0b2f23;
    border-radius: 12px;
    padding: 30px;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    text-align: left;
}

.hk-input-group {
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hk-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #5c726a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hk-required {
    color: #10b981;
    margin-left: 2px;
}

.hk-optional {
    color: #a3b3ac;
    text-transform: lowercase;
    font-weight: 400;
}

.hk-input-field,
.hk-textarea-field {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1ded8;
    background-color: #ffffff;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #0b2f23;
    outline: none;
    transition: all 0.2s ease;
}

.hk-textarea-field {
    resize: vertical;
    min-height: 120px;
}

.hk-input-field:focus,
.hk-textarea-field:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.hk-input-field::placeholder,
.hk-textarea-field::placeholder {
    color: #b3c2bb;
}

.hk-form-note {
    font-size: 0.8rem;
    color: #788e85;
    line-height: 1.4;
    margin-top: 10px;
}

.hk-btn-submit {
    width: 100%;
    background-color: #0b2f23;
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.2s ease;
}

.hk-btn-submit:hover {
    background-color: #114735;
}

.ic-cards-section-wrapper {
    font-family: 'Inter', sans-serif;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 40px auto;
    padding: 0 20px 20px 20px;
    background-color: #ffffff;
}

.ic-cards-section-wrapper *,
.ic-cards-section-wrapper *::before,
.ic-cards-section-wrapper *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.ic-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.ic-contact-card {
    background-color: #ffffff;
    border: 1px solid #eef2f0;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    text-align: left;
}

.ic-contact-card.ic-featured-green {
    background-color: #0b2f23;
    border: none;
    color: #ffffff;
}

.ic-card-icon-box {
    width: 44px;
    height: 44px;
    background-color: #f3f7f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #0b2f23;
    margin-bottom: 20px;
}

.ic-featured-green .ic-card-icon-box {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.ic-card-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #10b981;
    margin-bottom: 6px;
}

.ic-card-main-info {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0b2f23;
    line-height: 1.3;
    margin-bottom: 8px;
    word-break: break-word;
}

.ic-featured-green .ic-card-main-info {
    color: #ffffff;
}

.ic-card-sub-desc {
    font-size: 0.9rem;
    color: #788e85;
    margin-bottom: 20px;
    line-height: 1.4;
}

.ic-featured-green .ic-card-sub-desc {
    color: rgba(255, 255, 255, 0.7);
}

.ic-card-action-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0b2f23;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.ic-card-action-link:hover {
    text-decoration: underline;
}

.ic-featured-green .ic-card-action-link {
    color: #10b981;
}

.ic-link-green {
    color: #10b981 !important;
}

.ic-operational-bar {
    width: 100%;
    background-color: #f8faf9;
    border: 1px solid #eef2f0;
    border-radius: 12px;
    padding: 16px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.ic-op-left-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ic-op-icon {
    font-size: 1.2rem;
}

.ic-op-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0b2f23;
}

.ic-op-hours {
    font-size: 0.85rem;
    color: #788e85;
    margin-top: 2px;
    text-align: left;
}

.ic-op-right-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.ic-op-nav-item {
    font-size: 0.85rem;
    color: #788e85;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ic-op-nav-item:hover {
    color: #0b2f23;
}

@media (max-width: 992px) {
    .hk-main-title {
        font-size: 2.6rem;
    }

    .ic-card-main-info {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hk-main-title {
        font-size: 2.3rem;
    }

    .hk-form-card {
        padding: 20px;
        max-width: 100%;
    }

    .ic-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ic-contact-card {
        padding: 24px;
        min-height: auto;
    }

    .ic-operational-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .ic-op-right-nav {
        width: 100%;
        justify-content: space-between;
        border-top: 1px solid #eef2f0;
        padding-top: 12px;
    }
}

@media (max-width: 576px) {
    .hk-section-wrapper {
        padding: 10px;
        margin-top: 24px;
    }

    .hk-main-title {
        font-size: 2rem;
    }

    .ic-cards-section-wrapper {
        padding: 0 10px 20px 10px;
    }

    .ic-card-main-info {
        font-size: 1.1rem;
    }
}

/* Cegah scroll horizontal di layar kecil */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
}
