.header{
    background-color:#093FB4 ;
    
}


.navbar.navbar-dark .navbar-brand,
.navbar.navbar-dark .navbar-nav .nav-link {
    color: #FFFCFB !important;
    text-decoration: none !important;
}

/* Hover: hanya garis bawah */
.navbar.navbar-dark .navbar-nav .nav-link:hover {
   color: #ED3500 !important; /* Warna lebih gelap saat hover */
}



.header {
    background-color: #093FB4;
}



/* logo */
.navbar-brand div {
    font-size: 14px;
    margin-top: 5px;
}

/* dropdown pilihan menu anak */
/* Munculkan dropdown saat hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    background-color: #FFFCFB;
    
}

/* Tambahan opsional */
.dropdown-menu {
    display: none;
    transition: all 0.2s ease-in-out;
    border-radius: 0.5rem;
    font-size: 14px;
}

 /* Custom warna tombol search */
        .btn-search {
            background-color: #FFFCFB !important;
            color: #093FB4 !important;
            border: none;
        }

        .btn-search:hover {
            background-color: #FFD8D8 !important;
        }

        


/* poin bg point font dan bg colornya yang kolom 3 semuanya*/

.poin {
  position: relative;
  background: #FFD8D8;
  border-left: 5px solid #EB5B00;
  border-radius: 15px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.poin h5 {
  color: black;
  font-weight: bold;
  margin-bottom: 10px;
}

.poin p {
  color: #333;
  font-size: 0.95em;
  line-height: 1.6;
}

.poin::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #093FB4, #093FB4);
  transition: left 0.5s ease;
  z-index: 0;
  opacity: 0.1;
}

.poin:hover::before {
  left: 0;
}

.poin:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Responsif tambahan opsional */
@media (max-width: 768px) {
  .poin {
    margin-bottom: 20px;
  }
}
    

/* font profil perusahaan */
.ppf{
    text-align: justify; 
    font-size: 18px;
    
}

.fw{
  font-size: 12px;
  font-weight: bold;
}


/* === PRODUK GRID KHUSUS MANUFAKTUR TANPA CAROUSEL === */

.produk-grid-wrapper {
  background-color: #f8f9fa;
}

/* Kartu Produk */
.produk-grid-card {
    /* Hapus border default 1px agar hanya border kiri & kanan yang muncul */
    border: none; 
    
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    
    /* Warna Latar Belakang */
    background-color: #FFD8D8; 
    
    /* Shadow */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); 

    /* --- BORDER SPESIFIK KANAN & KIRI --- */
    
    /* Border Kiri: Tipis (1px) dengan Warna Primer Biru Tua */
    border-left: 1px solid #FFD8D8; 
    
    /* Border Kanan: Tebal (4px) dengan Warna Aksen Merah Cerah */
    border-right: 4px solid #FFD8D8; 
    
    /* Transisi untuk efek hover */
    transition: all 0.3s ease-in-out; 

    /* Opsional: Tambahkan padding agar konten tidak menempel ke border */
    padding-left: 5px; 
    padding-right: 5px; 
}

/* Efek Hover Tambahan: Memberi sedikit angkatan saat kursor di atas kartu */
.produk-grid-card:hover {
    transform: translateY(-3px); /* Naik sedikit */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25); /* Shadow lebih menonjol */
    /* Opsional: Ubah border kanan saat hover untuk feedback visual */
    border-right: 6px solid #093FB4; 
}


.produk-grid-card:hover {
  transform: scale(1.02);
}

/* Gambar Produk */
.produk-grid-img {
  height: 300px;
  object-fit: cover; /* gambar tetap proporsional dan seragam */
  border-bottom: 1px solid #ddd;
  background-color: white;
  
}

/* Tombol */
.produk-grid-btn {
  background-color: #ED3500;
  color: #FFFCFB;
  width: 100%;
}

/* Judul & teks */
.produk-grid-card .card-title {
  font-size: 1rem;
  font-weight: 600;
}

.produk-grid-card .card-text {
  font-size: 0.85rem;
  color: #555;
}

/* === END PRODUK GRID === */



/* detail produk */
/* css/detail-produk.css */
.produk-detail-container {
  margin-top: 40px;
  font-family: 'Segoe UI', sans-serif;
}

.gambar-utama {
 border-radius: 10px;
 width: 100%;
 max-height: 450px;
 object-fit: contain; /* Perubahan utama di sini */
border: 2px solid #ddd;
}
.thumbnail img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.thumbnail img:hover {
  border-color: #333;
}

.deskripsi-produk ul {
  padding-left: 18px;
}

.deskripsi-produk ul li {
  margin-bottom: 5px;
}

.info-produk h4 {
  color: #143D60;
}

.pengiriman {
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
}

.scrollable-left {
  max-height: calc(100vh - 100px); /* Menyesuaikan tinggi layar */
  overflow-y: auto;
  padding-right: 10px;
  scroll-behavior: smooth;
}

/* Sticky bagian kanan */
.sticky-right {
  position: sticky;
  top: 100px; /* Jarak dari atas */
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Tambahan untuk menyempurnakan layout */
@media (max-width: 768px) {
  .scrollable-left, .sticky-right {
    position: static;
    max-height: unset;
    overflow: visible;
    padding: 0;
    box-shadow: none;
  }
}




/* FOOTER */

.footer-bg {
    background-color: #FFD8D8;
}

.footer-title {
    color: #ED3500;
}

.footer-link {
    color: black;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
    color: #ED3500;
}

.footer-text {
    color: #ED3500;
}

.newsletter-modal {
    background-color: #ED3500;
    color: white;
}

.newsletter-label {
    color: #DDEB9D;
}

.footer-bottom {
    color: #ED3500;
}

.btn-langganan {
    background-color: #FFD8D8;
    color: EB5B00;
    border: none;
}

.btn-langganan:hover {
    background-color: white;
}




/* BUATAKUN */

/* FORM PENDAFTARAN AKUN BARU */

.form-card {
  padding: 2rem;
  border: none;
  background-color: #FFD8D8;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border-radius: 12px;
}

.label-form {
  color: #ED3500;
  font-weight: 500;
}

.hint-text {
  color:#ED3500;
  font-size: 0.875rem;
}

.login-link {
  color: black;
  font-size: 0.9rem;
}

.link-login {
  color: #ED3500;
  font-weight: bold;
}

.link-login:hover {
  text-decoration: underline;
}

.btn-langganan {
  background-color: #ED3500;
  color: white;
  border: none;
  padding: 0.75rem;
  font-weight: 600;
  border-radius: 8px;
}

.btn-langganan:hover {
  background-color: white;
}


/* PASWORD */
.toggle-password {
  position: absolute;
  top: 40px;
  right: 15px;
  cursor: pointer;
  user-select: none;
  font-size: 1.2rem;
  color: #999;
}


/* LOGIN */

/* Container dan form */
.login-auth-card {
  padding: 2rem;
  border: none;
  background-color: #FFD8D8;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border-radius: 12px;
}

.login-auth-title {
  color: black;
  font-weight: 500;
}

.login-auth-subtitle {
  color:black;
  font-size: 0.875rem;
}

.login-auth-link {
  color: #ED3500;
  font-size: 0.9rem;
  text-decoration: none;
}

.login-auth-link:hover {
  text-decoration: underline;
}

/* Label form dan hint */
.login-label-form {
  font-weight: 600;
  color: #ED3500;
}

.login-hint-text {
  font-size: 0.8rem;
  color: #888;
}

/* Input field */
.login-form-control {
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 10px 12px;
  font-size: 1rem;
}

/* Tombol */
.login-btn-langganan {
  background-color: #ED3500;
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 10px;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.login-btn-langganan:hover {
  background-color: white;
}



/* KONSULTASI */

/* Section Konsultasi */
.consultation-section {
  background-color: #f8f9fa; /* bg-light */
  padding: 60px 0;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.consultation-section h2 {
  color: black;
  font-weight: 700;
  margin-bottom: 16px;
}

.consultation-section p {
  max-width: 700px;
  margin: 0 auto 24px;
  font-size: 1rem;
  color: #333;
}

.consultation-section .consult-button {
  background-color: #143D60;
  color: #fff;
  padding: 12px 32px;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease;
}

.consultation-section .consult-button:hover {
  background-color: #0f2d4a;
  color: #fff;
}

.tab-pane {
  background-color: #FFD8D8;
  margin: 10px;     /* jarak di luar tab */
  padding: 10px; /* jarak di dalam konten tab */
  border-radius: 8px; /* opsional: sudut sedikit melengkung */
}


/* KATEGORI PRODUK */
.kategori-card {
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s;
  background-color: #FFD8D8;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Tambahan shadow */

}
.kategori-card:hover {
  transform: scale(1.03);
}

.kategori-title {
  color: #ED3500;
  text-align: center;
  font-size: 1.1rem;
  margin-top: 10px;
}

/* HARGA */
.harga{
  color: #ED3500;
  font-size: medium;
  font-weight: bold;
}


/* LAYANAN */
.service-card {
    box-shadow: 0 4px 6px rgb(0 0 0 / 0.1);
    border-radius: 0.5rem;
    padding: 1.5rem;
    background-color: #FFD8D8;
    overflow: hidden;
    transition: transform 0.3s ease;


   }
   .service-icon {
    width: 40px;
    height: 30px;
    object-fit: contain;
   }
   
  .btn-teal:hover {
    color: black;}
  .text-layanan{
    color: black;
    .btn-teal {
    white-space: normal !important; /* teks boleh turun ke baris berikutnya */
    word-wrap: break-word;
    text-align: center;
}

  }

  /* AKHIR LAYANAN */


    /* AKUN */
       body { font-family: "Roboto", sans-serif; }
   label { font-weight: 600; }
   .profile-pic {
     width: 96px;
     height: 96px;
     border-radius: 50%;
     border: 4px solid #6b7280;
     object-fit: cover;
   }

.table-blue {
    background-color: #093FB4;
    color: white;
}

.table td img {
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.btn-checkout2 {
    background-color: #093FB4;
    font-weight: bold;
    color: white;
}



.btn-checkout {
    background-color: #ED3500;
    font-weight: bold;
    color: white;
}

 .btn-checkout :hover {
    background-color: #6b7280;
    font-weight: bold;
    color: white;
}

tr:last-child td {
    background-color: #f8f9fa;
    font-size: 1.2rem;
}


/* BAGIAN CHECHOUT KURANGI DAN TAMBAH */

.btn-tambah
 {
  background-color: #093FB4;
  color: white;
  padding: 5px 10px;
  font-size: 14px;
  transition: background-color 0.2s, color 0.2s;
}

.btn-tambah:hover
 {
  background-color: #6b7280;
  color: white;
}

.btn-kurang
 {
  background-color: #093FB4;
  color: white;
  padding: 5px 10px;
  font-size: 14px;
  transition: background-color 0.2s, color 0.2s;
}

.btn-kurang:hover
 {
  background-color: #6b7280;
  color:  white;
}

.input-jumlah {
  width: 50px;
  text-align: center;
  border: 1px solid #ccc;
  height: 32px;
}
/* AKHIR CHECKOUT KURANGI DAN TAMBAH */

.keranjang{
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s;
  background-color: #093FB4;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}


/* KERANJANG */








/* KARYA KITA */
.karya-card {
    background: linear-gradient(135deg, #ED3500, #093FB4); /* Gradasi Biru */
    color: #fff; /* Teks putih */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.karya-card:hover {
    transform: translateY(-5px); /* Efek naik saat di-hover */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.karya-card .card-body h5,
.karya-card .card-body p {
    color: #fff;
}

.karya-card .card-body small.text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* KONSULTASI */
/* Styling untuk bagian Konsultasi */
.consultation-section {
    background: linear-gradient(135deg, #ED3500, #093FB4); /* Gradasi Biru */
    color: #fff;
    padding: 80px 0;
}

.consultation-section h2 {
    font-size: 30px;
    font-weight: 700;
    color: white;
}
.consultation-section p,
.consultation-section a {
    color: #fff !important; /* Memaksa warna menjadi putih */
}

.consultation-section p.lead {
    font-size: 18px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.consultation-section .btn {
    font-size: 1.2rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.consultation-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Animasi untuk tombol */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.animate__pulse {
    animation: pulse 2s infinite;
}





/* LAYANAN */
/* Styling Kartu Layanan yang Lebih Baik */
.service-card {
    background: #FFD8D8;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card h2 {
    color: #093FB4;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card ul {
    list-style-type: none;
    padding-left: 0;
}

.service-card ul li {
    font-size: 0.95rem;
    color: #555;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

/* Menambahkan ikon checklist sebagai bullet point */
.service-card ul li::before {
    content: "\f26e"; /* Kode ikon Bootstrap Icons untuk check-circle-fill */
    font-family: "Bootstrap-icons";
    position: absolute;
    left: 0;
    color: #093FB4; /* Warna ikon */
    font-size: 1rem;
    top: 2px;
}

.service-card .btn-teal {
     display: inline-block;
    padding: 8px 20px;
    border-radius: 50px; /* Bentuk kapsul */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    
    /* Gradien Warna Primer */
    background: linear-gradient(90deg, #093FB4, #4a77cc);
    color: #ffffff;
    border: 2px solid #093FB4;
    transition: all 0.3s ease;
}

.service-card .btn-teal:hover {
   /* Gradien Warna Aksen saat hover */
    background: linear-gradient(90deg, #ED3500, #ff6633);
    color: #ffffff;
    border-color: #ED3500;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 53, 0, 0.3);
}



/* Kelas untuk teks utama */
.text-layanan {
    color: #777;
    font-style: italic;
}


/* AKHIR LAYANAN */


/* HALAMAN VISI */
  
       .visi {
            font-weight: 700;
        }
        .section-visi-misi {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 4rem 0;
        }
        .visi-section {
            background-color: #FFD8D8;
            color: black;
        }
        .misi-section {
            background-color: #093FB4;
            color: black;
        }
        .visi-section .card, .misi-section .card {
            background-color: #093FB4;
            border: none;
        }
        .visi-section .card-title {
            font-size: 3.5rem;
            color: #FFD8D8;
            position: relative;
            display: inline-block;
        }
        .visi-section .card-text {
            font-size: 1.25rem;
            line-height: 1.6;
        }
        .misi-section .card-title {
            font-size: 3.5rem;
            color: #093FB4;
            position: relative;
            display: inline-block;
        }
        .misi-section .card-text {
            font-size: 1.25rem;
            line-height: 1.6;
        }
        .image-container {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease-in-out;
            background-color: white;
        }
        .image-container:hover img {
            transform: scale(1.05);
        }
        .misi-section .image-container {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        .misi-section .card-body {
            background-color: #FFD8D8;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }
        .visi-section .card-body {
            background-color: #093FB4;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }
        @media (max-width: 992px) {
            .section-visi-misi {
                flex-direction: column;
                text-align: center;
            }
            .section-visi-misi .row {
                flex-direction: column-reverse;
            }
            .section-visi-misi .card {
                padding: 2rem 0;
            }
            .visi-section .card-title, .misi-section .card-title {
                font-size: 2.5rem;
            }
        }


        /* KATALOG CSS */
/* Palet Warna:
 * Primer: #093FB4 (Biru Tua)
 * Aksen: #ED3500 (Merah Cerah)
 * Latar: #f8f9fa
*/



/* --- Header Section --- */
.katalog-section-header h1 {
    font-weight: 700;
    color: #093FB4; /* Judul utama menggunakan warna Primer */
}
.katalog-section-header p {
    font-size: 1.1rem;
    color: #6c757d;
}

/* Garis Aksen di bawah Judul */
.katalog-section-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #ED3500; /* Garis aksen Merah */
    margin: 10px auto 0;
    border-radius: 2px;
}

/* --- Card Links --- */
.katalog-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

/* --- Card Styles --- */
.katalog-card {
    position: relative;
    overflow: hidden; 
    border-radius: 15px;
    /* Transisi utama */
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border 0.2s ease-out, background-color 0.2s ease-out;
    z-index: 1;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(9, 63, 180, 0.1); 
}

/* Efek HOVER */
.katalog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #093FB4;
}

/* Efek ACTIVE (Saat Ditekan/Diklik) - Estetik */
.katalog-card-link:active .katalog-card {
    transform: translateY(-2px); 
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); 
    background-color: #e6f0ff; /* Biru sangat muda yang estetik */
}

/* --- Card Content --- */
.katalog-card-icon {
    font-size: 3rem;
    line-height: 1;
    display: inline-block;
    transition: transform 0.2s ease-out, color 0.2s ease-out;
    color: #093FB4; /* Ikon default Biru Tua */
}

.katalog-card-title {
    color: #093FB4;
    transition: color 0.2s ease-out;
}

/* Ikon dan Judul saat HOVER */
.katalog-card:hover .katalog-card-icon {
    transform: scale(1.2);
    color: #ED3500; /* Ikon berubah ke warna Aksen saat hover */
}

/* Ikon dan Judul saat ACTIVE */
.katalog-card-link:active .katalog-card-icon {
    transform: scale(0.95); 
    color: #ED3500;
}

.katalog-card-link:active .katalog-card-title {
    color: #ED3500 !important; 
}


/* --- GLOW Effect (Pseudo-element) --- */
.katalog-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ED3500, #093FB4); 
    background-size: 200% 200%;
    z-index: -1;
    border-radius: 17px;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.katalog-card:hover::before {
    opacity: 0.5;
}

/* Memastikan glow tidak muncul saat ditekan jika kursor sudah dihilangkan */
.katalog-card-link:active .katalog-card::before {
     opacity: 0; 
}
/* AKHIR CSS KATALOG */



 /* Palet Warna:
 * Primer: #093FB4 (Biru Tua)
 * Aksen: #ED3500 (Merah Cerah)
 * Latar: #FFD8D8 (Permintaan Baru)
*/



/* --- Header Section --- */
.katalog-section-header h1 {
    font-weight: 700;
    color: #093FB4;
}
.katalog-section-header p {
    font-size: 1.1rem;
    color: #6c757d;
}

/* Garis Aksen di bawah Judul Kategori */
.section-title {
    color: #093FB4;
    font-weight: 700;
    border-bottom: 3px solid #ED3500;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 30px;
}

/* --- Card Styles --- */
.service-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    background-color: #FFD8D8;
    height: 100%; 
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Ikon */
.service-icon {
    font-size: 2.5rem;
    color: #093FB4; /* Warna Primer */
    margin-bottom: 15px;
    transition: color 0.3s ease-in-out;
}
.service-card:hover .service-icon {
    color: #ED3500; /* Warna Aksen saat hover */
}

/* --- Button Styles (Tombol Hubungi Kami) --- */
.btn-katalog {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px; /* Bentuk kapsul */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    
    /* Gradien Warna Primer */
    background: linear-gradient(90deg, #093FB4, #4a77cc);
    color: #ffffff;
    border: 2px solid #093FB4;
    transition: all 0.3s ease;
}

.pusat-tombol {
    text-align: center; /* Ini yang akan menengahkan tombol */
}

.btn-katalog:hover {
    /* Gradien Warna Aksen saat hover */
    background: linear-gradient(90deg, #ED3500, #ff6633);
    color: #ffffff;
    border-color: #ED3500;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 53, 0, 0.3);
}

.card-title {
    color: #343a40;
}
.card-text {
    color: #6c757d;
}



/* detail layanan */
/* Palet Warna:
         * Primer: #093FB4 (Biru Tua)
         * Aksen: #ED3500 (Merah Cerah)
         * Latar: #FFD8D8 (Merah Muda Pucat)
        */

      

        /* --- Header Section (Biru Tua) --- */
        .header-layanan {
            background-color: #093FB4;
            color: white;
            padding: 4rem 0;
            border-bottom: 5px solid #ED3500; /* Garis Aksen */
        }

        /* --- Section Keunggulan (Latar Merah Muda Pucat) --- */
        .section-keunggulan {
            background-color: #FFD8D8; 
            padding: 3rem 0;
        }
        .accent-text {
            color: #ED3500;
            font-weight: 700;
        }
        .keunggulan-card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s;
        }
        .keunggulan-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        }

        /* --- Section Lingkup Pekerjaan --- */
        .section-lingkup {
            padding: 3rem 0;
        }
        .bullet-item {
            font-size: 1.1rem;
            margin-bottom: 20px;
            padding-left: 0;
            list-style: none; /* Menghapus bullet default */
        }
        .bullet-item i {
             color: #093FB4; /* Ikon Biru Tua */
        }






        /* PROFIL PERUSAHAAN */
                /* Tempelkan kode CSS ajp- TANPA :root di sini */
        /* Definisi Warna Langsung */
        .ajp-primary-color { color: #093FB4; }
        .ajp-secondary-color { color: #ED3500; }

        /* Navigasi */
        .ajp-navbar {
            background-color: #093FB4 !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .ajp-navbar .nav-link {
            color: white !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .ajp-navbar .nav-link:hover {
            color: #ED3500 !important;
        }

        /* Bagian Hero (Header Utama) */
        .ajp-hero {
            background: linear-gradient(135deg, rgba(9, 63, 180, 0.9) 0%, rgba(237, 53, 0, 0.7) 100%), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat fixed;
            color: white;
            padding: 150px 0;
            text-align: center;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            border-bottom-left-radius: 50px;
            border-bottom-right-radius: 50px;
        }
        .ajp-hero h1 {
            font-weight: 800;
            font-size: 4rem;
            margin-bottom: 25px;
            letter-spacing: 1px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
        }
        .ajp-hero p {
            font-size: 1.4rem;
            font-weight: 300;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .ajp-icon-large {
            font-size: 4.5rem;
            margin-bottom: 30px;
            color: white;
        }

        /* Tombol Kustom */
        .ajp-btn-custom {
            background-color: #ED3500;
            color: white;
            border: 2px solid transparent;
            border-radius: 30px;
            padding: 12px 40px;
            font-weight: 700;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        .ajp-btn-custom:hover {
            background-color: white;
            color: #ED3500;
            border: 2px solid #ED3500;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Bagian Konten Umum */
        .ajp-section {
            padding: 100px 0;
        }
        .ajp-section:nth-child(even) {
            background-color: #ffffff;
        }
        .ajp-section-title {
            color: #093FB4;
            font-weight: 800;
            font-size: 2.5rem;
            margin-bottom: 50px;
            position: relative;
            padding-bottom: 10px;
        }
        .ajp-section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: #ED3500;
            margin: 10px auto 0;
            border-radius: 2px;
        }

        /* Card */
        .ajp-card {
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            overflow: hidden;
            background-color: #fff;
            height: 100%;
        }
        .ajp-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }
        .ajp-card-title {
            color: #093FB4;
            font-weight: 700;
            font-size: 1.5rem;
        }
        .ajp-card .ajp-icon-large {
            font-size: 4rem;
            color: #ED3500;
            margin-bottom: 25px;
        }
        .ajp-card ul {
            list-style-type: none;
            padding-left: 0;
        }
        .ajp-card li {
            padding: 15px 0;
            border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
            font-weight: 400;
        }
        .ajp-card li:last-child {
            border-bottom: none;
        }

        /* Gambar Tentang Kami */
        .ajp-about-img {
            border-radius: 20px;
            object-fit: cover;
            height: 350px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            width: 100%;
        }

        /* Nilai-Nilai */
        .ajp-value-card .card-body h5 {
            color: #ED3500;
            font-weight: 700;
            margin-top: 10px;
            margin-bottom: 15px;
        }

        /* Tim */
        .ajp-team-card {
            text-align: center;
            padding: 20px;
        }
        .ajp-team-card img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            border: 5px solid #093FB4;
            box-shadow: 0 0 0 5px rgba(237, 53, 0, 0.3);
            transition: all 0.3s ease;
        }
        .ajp-team-card:hover img {
            border-color: #ED3500;
            transform: scale(1.05);
        }
        .ajp-team-card h5 {
            color: #093FB4;
            font-weight: 700;
            margin-top: 15px;
        }
        .ajp-team-card p {
            font-size: 0.9rem;
            color: #666;
        }

        /* Portofolio */
        .ajp-portfolio-item {
            border: none;
            background-color: #fff;
        }
        .ajp-portfolio-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 20px 20px 0 0;
            transition: transform 0.5s ease;
        }
        .ajp-portfolio-item:hover img {
            transform: scale(1.05);
        }
        .ajp-portfolio-item .card-body {
            padding: 25px;
        }
        .ajp-portfolio-item .card-title {
            color: #ED3500;
            font-weight: 700;
        }
        .ajp-portfolio-item p {
            font-size: 0.95rem;
        }

        /* Footer */
        .ajp-footer {
            background-color: #093FB4;
            color: white;
            padding: 30px 0;
            text-align: center;
        }
        .ajp-footer a {
            color: #FFD8D8;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .ajp-footer a:hover {
            color: #ED3500;
        }
        .ajp-social-icons {
            margin-top: 15px;
            font-size: 1.5rem;
        }
        .ajp-social-icons i {
            margin: 0 10px;
        }

        /* Utility */
        .text-ajp-primary { color: #093FB4 !important; }
        .text-ajp-secondary { color: #ED3500 !important; }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .ajp-hero {
                padding: 100px 0;
                border-bottom-left-radius: 20px;
                border-bottom-right-radius: 20px;
            }
            .ajp-hero h1 {
                font-size: 3rem;
            }
            .ajp-hero p {
                font-size: 1.1rem;
            }
            .ajp-section {
                padding: 60px 0;
            }
            .ajp-about-img {
                margin-bottom: 30px;
            }
        }

/*  portofolio */
/* ================================
   WARNA DASAR
================================ */
:root {
    --primer: #093FB4;
    --aksen: #ED3500;
    --latar: #FFD8D8;

    --teks-terang: #ffffff;
    --teks-gelap: #222222;
    --teks-sekunder: #555555;
}

/* ================================
   WRAPPER PORTO
================================ */
.porto {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--teks-gelap);
    background-color: transparent;
}

/* Container */
.porto .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

/* ================================
   JUDUL SECTION
================================ */
.porto .ajp-section-title {
    color: var(--primer);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.porto .text-ajp-secondary {
    color: var(--aksen) !important;
}

/* ================================
   GRID PORTFOLIO
================================ */
.porto .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* ================================
   CARD PORTFOLIO
================================ */
.porto .project-card {
    background-color: var(--teks-terang);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    text-decoration: none;
    color: var(--teks-gelap);
    display: flex;
    flex-direction: column;
}

.porto .project-card:hover {
    transform: translateY(-8px);
    background-color: var(--primer);
    box-shadow: 0 15px 30px rgba(9, 63, 180, 0.4);
}

.porto .project-card:hover h5,
.porto .project-card:hover p,
.porto .project-card:hover span {
    color: var(--teks-terang) !important;
}

/* ================================
   GAMBAR
================================ */
.porto .project-image-wrapper {
    background-color: var(--latar);
    height: 250px;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.porto .project-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease;
}

.porto .project-card:hover .project-image-wrapper img {
    transform: scale(1.05);
}

/* ================================
   CTA BUTTON
================================ */
.porto .primary-cta {
    background-color: var(--aksen);
    color: var(--teks-terang) !important;
    padding: 16px 32px;
    border-radius: 8px;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .5px;
    transition: 0.3s;
}

.porto .primary-cta:hover {
    background-color: var(--primer);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 600px) {
    .porto .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}





    
/* ================================
 PROFIL PERUSAHAAN
================================ */
 
    /* ANIMASI DASAR */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInSlow {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}

/* CARD WRAPPER */
.container .card {
    padding: 40px;
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    animation: fadeInSlow 0.8s ease-out;
}

/* HEADER */
.profil-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    animation: fadeIn 0.8s ease-out;
}

.profil-header img {
    animation: fadeIn 0.9s ease-out;
}

.profil-header h1 {
    color: #093FB4;
    font-size: 2.5em;
    margin-bottom: 5px;
    animation: fadeIn 1s ease-out;
}

.profil-header p {
    color: #666;
    font-size: 1.1em;
    animation: fadeIn 1.2s ease-out;
}

/* STATISTIK */
.statistik-grid {
    display: flex;
    justify-content: space-around;
    padding: 25px 0;
    margin: 25px 0;
    background-color: #e9f5ff;
    border-radius: 8px;
    animation: fadeIn 1s ease-out;
}

.statistik-item {
    text-align: center;
    transition: 0.3s ease;
}

.statistik-item:hover {
    transform: translateY(-5px);
}

.statistik-item .number {
    font-size: 2.5em;
    font-weight: bold;
    color: #28a745;
}

.statistik-item .label {
    color: #555;
    font-size: 0.9em;
    text-transform: uppercase;
}

/* VISI MISI */
.visi-misi-grid {
    display: flex;
    gap: 30px;
    animation: fadeIn 1.2s ease-out;
}

.visi-misi-item {
    flex: 1;
    padding: 25px;
    border-left: 5px solid #093FB4;
    background-color: #f9f9f9;
    border-radius: 5px;
    animation: fadeIn 1.3s ease-out;
    transition: 0.3s;
}

.visi-misi-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.visi-misi-item h3 {
    color: #093FB4;
    margin-top: 0;
    font-size: 1.5em;
    display: flex;
    gap: 10px;
    align-items: center;
}
   


/* NILAI INTI */
.nilai-inti-section h2 {
    animation: fadeIn 1.4s ease-out;
}

.nilai-inti-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.nilai-item {
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: 0.3s ease;
    animation: fadeIn 1.5s ease-out;
}

.nilai-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.nilai-item i {
    font-size: 2.5em;
    color: #ffc107;
    margin-bottom: 15px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    .visi-misi-grid {
        flex-direction: column;
    }

    .statistik-grid {
        flex-direction: column;
        gap: 15px;
    }
}


.btn-katalog.btn-tombol.produk-grid-btn {
    display: block;
    width: 100%;
    padding: 10px 14px;
    text-align: center;
    font-weight: 600;
    border-radius: 6px;
    background-color: var(--primer);
    color: #fff;
    transition: all 0.25s ease;
    border: none;
}

.btn-katalog.btn-tombol.produk-grid-btn:hover {
    background-color: #062f82; /* versi lebih gelap dari primer */
    transform: translateY(-2px);
}

.btn-katalog.btn-tombol.produk-grid-btn + .btn-katalog.btn-tombol.produk-grid-btn {
    margin-top: 8px; /* jarak antar tombol */
}



.ajp-hero {
    width: 100%;
    min-height: 60vh; /* tampilan responsif */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white; /* jika ada teks */
}
@media (max-width: 768px) {
    .ajp-hero {
        min-height: 40vh;
        background-position: top;
    }
}
.ajp-hero {
    position: relative;
}
.ajp-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}



        
.hero-img-wrapper {
    width: 100%;
    overflow: hidden;
}

.hero-full-img {
    width: 100%;
    height: auto; /* gambar muncul full tanpa cropping */
    display: block;
}

/* ===== TIM KAMI ===== */
@media (max-width: 768px) {
    #tim .col-md-4 {
        width: 50% !important;   /* jadi 2 kolom */
        flex: 0 0 50% !important;
    }
}

@media (max-width: 480px) {
    #tim .col-md-4 {
        width: 100% !important;  /* kalau layar sangat kecil → 1 kolom */
        flex: 0 0 100% !important;
    }
}


/* ===== PORTOFOLIO ===== */
 /* CLASS UTAMA: porto-clien */
        .porto-clien {
            max-width: 1200px;
            margin: auto;
            padding: 50px;
            background: #fff;
            box-shadow: 0 15px 30px rgba(0,0,0,0.15); /* Shadow lebih menonjol */
            border-radius: 15px;
        }

        /* Header Utama */
        .porto-clien-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .porto-clien h1 {
            font-size: 3em;
            font-weight: 800;
            color: #093FB4; /* Biru Tua (Primer) */
            border-bottom: none;
            margin-bottom: 10px;
            padding: 0;
        }
        .porto-clien-header p {
            font-size: 1.2em;
            color: #555;
            border-top: 3px solid #ED3500; /* Garis Aksen */
            padding-top: 10px;
            display: inline-block;
        }

        /* Gaya Judul Bagian */
        .porto-clien h2 {
            font-size: 2em;
            font-weight: 700;
            color: #093FB4; /* Biru Tua (Primer) */
            margin-top: 60px;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
        }
        .porto-clien h2::after {
            content: '';
            width: 80px;
            height: 4px;
            background-color: #ED3500; /* Garis pemisah Merah Cerah */
            position: absolute;
            left: 50%;
            bottom: -15px;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        /* Tata Letak Grid untuk Kartu Klien */
        .client-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Kolom responsif */
            gap: 25px;
            margin-top: 30px;
        }

        .client-card {
            background-color: #fcfcfc;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
            border-top: 5px solid #093FB4; /* Garis identitas Primer */
            transition: all 0.3s ease;
        }

        .client-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 20px rgba(0,0,0,0.15);
            border-top-color: #ED3500; /* Aksen saat hover */
        }
        
        .client-card strong {
            display: block;
            font-size: 1.15em;
            color: #093FB4; /* Biru Tua */
            font-weight: 700;
            margin-bottom: 5px;
        }

        .client-card .location {
            font-size: 0.9em;
            color: #777;
            margin-bottom: 15px;
        }

        .client-card .job-desc {
            padding: 10px 15px;
            background-color: #FFD8D8; /* Merah Muda Pucat (Latar) */
            border-radius: 5px;
            color: #ED3500; /* Merah Cerah (Aksen) */
            font-weight: 600;
            font-size: 0.95em;
        }
        
        /* Highlight untuk Proyek Besar/Baru */
        .client-card.highlight {
            border: 2px solid #ED3500;
            background-color: #fff9f9;
        }
        .client-card.highlight .job-desc {
            background-color: #ED3500;
            color: white;
        }

        /* Gaya Komitmen */
        .porto-clien-commitment {
            margin-top: 60px;
            padding: 40px;
            background: #FFD8D8; /* Merah Muda Pucat (Latar) */
            border: 3px solid #ED3500; /* Bingkai penuh Aksen */
            border-radius: 10px;
            text-align: center;
        }
        .porto-clien-commitment h3 {
            color: #093FB4; /* Biru Tua untuk judul komitmen */
            margin-top: 0;
            font-size: 1.8em;
            font-weight: 800;
        }
        .porto-clien-commitment p {
            font-size: 1.1em;
            color: #444;
        }

        
/* GRID CLIENT & PORTOFOLIO */
.client-grid, 
.portfolio-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr); /* Desktop */
}

.client-card, 
.project-card {
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 991px) { /* Tablet */
    .client-grid, .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) { /* HP */
    .client-grid, .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Portofolio card image */
.project-image-wrapper img {
    width: 100%;
    border-radius: 10px;
    height: 180px;
    object-fit: cover;
}


/* card portofoliopilihan */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* default 4 kolom */
    gap: 25px;
}

/* Tablet */
@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
}

/* HP / mobile */
@media (max-width: 576px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* whatsapp */
.wa-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
}
.wa-floating img {
    width: 42px;
    height: 42px;
}
.wa-floating:hover {
    transform: scale(1.1);
    transition: 0.2s;
}

.fb-floating {
    position: fixed;
    bottom: 90px; /* agar tidak tumpang tindih dengan tombol WA */
    right: 20px;
    background: #1877F2;
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
}
.fb-floating img {
    width: 42px;
    height: 42px;
}
.fb-floating:hover {
    transform: scale(1.1);
    transition: 0.2s;
}

/* alamat perusahaan */

        .ajp-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .ajp-header {
            background-color: #FFD8D8;
            padding: 40px 0;
            text-align: center;
            border-bottom: 5px solid #093FB4;
            margin-bottom: 40px;
        }

        .ajp-header h1 {
            color: #093FB4;
            font-size: 2.5em;
            margin: 0 0 5px 0;
            font-weight: 700;
            text-transform: uppercase;
        }

        .ajp-header p {
            color: #ED3500;
            font-size: 1.1em;
            font-weight: 400;
        }

        .ajp-info-section {
            display: flex;
            gap: 40px;
        }

        .ajp-col-half {
            flex: 1;
            padding: 20px;
            border: 1px solid #eee;
            border-radius: 8px;
            margin-bottom: 30px;
        }

        .ajp-col-full {
            width: 100%;
            padding: 20px;
            border: 1px solid #eee;
            border-radius: 8px;
            margin-bottom: 30px;
        }

        .ajp-h2 {
            color: #093FB4;
            font-size: 1.6em;
            border-bottom: 2px solid #093FB4;
            padding-bottom: 10px;
            margin-top: 0;
            margin-bottom: 20px;
        }

        .ajp-alamat-detail {
            margin-bottom: 25px;
            padding: 15px;
            background-color: #f8f8f8;
            border-left: 5px solid #ED3500;
            border-radius: 4px;
        }

        .ajp-alamat-detail strong {
            display: block;
            font-weight: 700;
            color: #34495e;
            margin-bottom: 5px;
        }

        .ajp-map-link {
            display: inline-block;
            background-color: #ED3500;
            color: #ffffff;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 700;
            transition: background-color 0.3s;
        }

        .ajp-map-link:hover {
            background-color: #c92f00;
        }

        .ajp-hours-list {
            list-style: none;
            padding: 0;
        }

        .ajp-hours-list li {
            padding: 10px 0;
            border-bottom: 1px dashed #ddd;
            display: flex;
            justify-content: space-between;
            font-size: 1.05em;
        }

        .ajp-hours-list li:last-child {
            border-bottom: none;
        }

        .ajp-day {
            font-weight: 400;
            color: #34495e;
        }

        .ajp-time {
            font-weight: 700;
            color: #093FB4;
        }

        .ajp-closed .ajp-time {
            color: #ED3500;
        }

        .ajp-footer-note {
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid #eee;
            font-size: 0.9em;
            color: #777;
            margin-top: 20px;
        }

        @media (max-width: 768px) {
            .ajp-info-section {
                flex-direction: column;
            }
        }


/* worksop */
.gambar-workshop {
    width: 100%;
    max-width: 420px;        /* batas maksimal gambar */
    height: auto;
    display: block;
    margin: 15px 0 25px;     /* jarak atas & bawah */
    border-radius: 12px;     /* sudut membulat */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* bayangan elegan */
    object-fit: cover;
    transition: transform .3s ease, box-shadow .3s ease;
}

/* Efek hover biar elegan */
.gambar-workshop:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

/* Responsif di layar HP */
@media (max-width: 600px) {
    .gambar-workshop {
        max-width: 100%;
        margin: 10px 0 20px;
        border-radius: 10px;
    }
}

/* KOMITMEN */
/* Palet Warna Kustom */
/* Primer: #093FB4 (Biru Tua)
 * Aksen: #ED3500 (Merah Cerah)
 * Latar Header: #FFD8D8 (Merah Muda Pucat)
 */

/* ========================================================= */
/* 1. OVERRIDE WARNA UTAMA BOOTSTRAP UNTUK TAMPILAN KONSISTEN */
/* ========================================================= */

/* Warna Primer */
.text-primary, .border-left-primary {
    color: #093FB4 !important;
}

.border-left-primary {
    border-left: .25rem solid #093FB4 !important;
}

/* Warna Danger/Aksi (Menggunakan Aksen Anda) */
.btn-danger, .btn-danger:hover, .btn-danger:focus, .border-left-danger {
    background-color: #ED3500 !important;
    border-color: #ED3500 !important;
    color: white !important;
}

/* Warna Kustom (Hijau untuk Lingkungan, Biru Muda untuk Sosial) */
.text-success, .border-left-success {
    color: #28a745 !important; /* Hijau Standar Bootstrap */
}
.text-info, .border-left-info {
    color: #17a2b8 !important; /* Biru Muda Standar Bootstrap */
}


/* ========================================================= */
/* 2. CUSTOM STYLING KOMITMEN (ESG) */
/* ========================================================= */

.komitmen-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

/* Header Utama Kustom (Diadaptasi dari HTML Anda) */
.komitmen-header-box {
    background-color: #FFD8D8; /* Latar: Merah Muda Pucat */
    color: #093FB4; /* Biru Tua */
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
}

.komitmen-header-box h1 {
    font-weight: 800; /* Lebih tebal dari default SB Admin */
    font-size: 2.5rem;
}

.komitmen-header-box .lead {
    color: #343a40; /* Teks lebih gelap agar terbaca */
}

.komitmen-header-box .divider {
    border-bottom: 3px solid #ED3500; /* Aksen: Merah Cerah */
    width: 80px;
    margin: 10px auto 0;
}

/* Kartu Pilar (Pillar Card) */
.komitmen-pillar-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}

.komitmen-pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.komitmen-pillar-card .card-body {
    padding: 2rem 1.5rem;
}

.komitmen-pillar-card .text-xs {
    letter-spacing: 1px;
}

.komitmen-pillar-card .fa-2x {
    color: #ced4da !important; /* Abu-abu terang untuk ikon latar */
}

/* Daftar Fokus Utama (Checklist) */
.komitmen-pillar-card .list-unstyled li {
    padding-left: 5px;
}

/* Call to Action Box (Transparansi) */
.komitmen-cta-box {
    background-color: #FFD8D8; /* Latar: Merah Muda Pucat */
    border: 2px solid #ED3500; /* Border Aksen: Merah Cerah */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.komitmen-cta-box h2 {
    color: #093FB4;
    font-weight: 700;
}

/* Tombol Download */
.komitmen-cta-box .btn-lg {
    padding: 12px 30px;
    font-size: 1.1rem;
}

/* ========================================================= */
/* 3. MEDIA QUERIES (RESPONSIVE DESIGN) */
/* ========================================================= */

@media (max-width: 991.98px) {
    /* Untuk tablet dan tampilan yang lebih kecil (kolom 4 menjadi 6) */
    .komitmen-section {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .komitmen-header-box h1 {
        font-size: 2rem; /* Ukuran header disesuaikan */
    }

    /* Kartu pilar akan tetap menumpuk (col-lg-4 menjadi col-12)
       namun kita bisa mengurangi padding dan margin */
    .komitmen-pillar-card {
        margin-bottom: 20px;
    }
    
    .komitmen-pillar-card .card-body {
        padding: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    /* Untuk tampilan HP (Ponsel) */
    
    /* Header di HP */
    .komitmen-header-box {
        padding: 20px 15px;
    }
    
    .komitmen-header-box h1 {
        font-size: 1.75rem;
    }
    
    /* Pendahuluan */
    .komitmen-section .lead {
        font-size: 1rem;
    }

    /* Kartu Pilar */
    .komitmen-pillar-card .text-xs {
        font-size: 0.7rem; /* Kecilkan teks kategori */
    }
    
    .komitmen-pillar-card .h5 {
        font-size: 1rem; /* Kecilkan deskripsi utama */
    }
    
    .komitmen-pillar-card .fa-2x {
        font-size: 1.5em !important; /* Kecilkan ikon latar */
    }
    
    /* Bagian CTA (Download Laporan) */
    .komitmen-cta-box {
        padding: 25px;
    }
    
    .komitmen-cta-box h2 {
        font-size: 1.5rem;
    }
    
    .komitmen-cta-box .btn-lg {
        width: 100%; /* Tombol memenuhi lebar layar */
        padding: 10px 20px;
        font-size: 1rem;
    }
}

/* produk baru */
/* ======================== */
/* HERO SLIDER STYLING */
/* ======================== */
#productHeroCarousel {
    width: 100%;
    margin-bottom: 20px;
}

.hero-slider-img {
    height: 450px; 
    object-fit: cover; 
    filter: brightness(60%); /* Gelapkan gambar agar teks terbaca */
}

.hero-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}

.carousel-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
}

/* Media Query untuk Mobile Slider */
@media (max-width: 768px) {
    .hero-slider-img {
        height: 300px; 
    }
    
    .carousel-caption .display-4 {
        font-size: 1.5rem;
    }
    
    .carousel-caption .lead {
        font-size: 0.9rem;
    }
}


/* ======================== */
/* KATEGORI CARD STYLING (CLOSE UP) */
/* ======================== */
.kategori-card {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden; 
    max-width: 300px;
    cursor: pointer;
}

.kategori-card:hover {
    transform: translateY(-5px); /* Efek angkat */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.kategori-card-link:focus {
    outline: none;
}

.kategori-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 180px; 
}

.kategori-img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.5s ease;
}

.kategori-card:hover .kategori-img {
    transform: scale(1.05); /* Efek zoom */
}

.kategori-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1); 
    transition: background 0.3s ease;
}

.kategori-card:hover .kategori-overlay {
    background: rgba(0, 0, 0, 0.2);
}

/* Hilangkan tampilan lama */
.kategori-wrapper-scroll, .nav-pills-custom {
    display: none !important; 
}

/* ======================== */
/* PRODUK GRID STYLING */
/* ======================== */
.produk-grid-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.produk-grid-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
}

.produk-grid-img {
    height: 200px;
    object-fit: contain; /* Gunakan contain agar gambar tidak terpotong */
    padding: 15px;
}



/* price-tag paket layanan*/
/* Menggunakan warna Aksen untuk harga (Merah Cerah #ED3500) */
    .price-tag {
        font-size: 22px; /* Ditingkatkan sedikit */
        font-weight: 800; /* Dibuat sangat tebal */
        color: #c92f00;
        margin-bottom: 12px;
        /* Tambahkan text-shadow ringan jika perlu, tapi biasanya tidak disarankan */
        /* text-shadow: 0 1px 1px rgba(0,0,0,0.2); */ 
    }


    .paketheader {
    font-size: 26px;
    line-height: 1.35;
    color: #0A2A43;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Tablet */
@media (min-width: 576px) {
    .paketheader {
        font-size: 30px;
    }
}

/* Laptop */
@media (min-width: 768px) {
    .paketheader {
        font-size: 34px;
    }
}

/* Desktop besar */
@media (min-width: 1200px) {
    .paketheader {
        font-size: 38px;
    }
}

.paket-nama {
        /* Ukuran dan Gaya Dasar */
        font-size: 1.5rem; /* Lebih besar dari fs-5 (1.25rem) */
        font-weight: 700; /* Tebal */
        color: #093FB4; /* Opsional: Menggunakan warna Primer */
        transition: color 0.3s ease, transform 0.3s ease; /* Transisi untuk animasi */
        margin-bottom: 0.5rem; /* Jaga jarak bawah */
    }

    /* Efek Hover/Animasi */
    .service-card:hover .paket-nama {
        transform: scale(1.03); /* Sedikit membesar */
    }

    .btn-cyan {
      background-color: #ED3500;
      border-color: #0891b2;
    }
    .btn-cyan:hover {
      background-color: #FFD8D8;
    }
    
    
.card_pembayaran {
    border-radius: 16px;
}
#pay-button {
    transition: all 0.3s ease;
}
#pay-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.card-katalog {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px; /* Bentuk kapsul */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    
    /* Gradien Warna Primer */
    background: linear-gradient(90deg, #093FB4, #4a77cc);
    color: #ffffff;
    border: 2px solid #093FB4;
    transition: all 0.3s ease;
}


    /* 
     */