body {
    font-family: 'Poppins', sans-serif;
}

/* Warna default */
.text-aab {
    color: #7c7968;
    transition: color 0.3s ease-in-out;
}

/* Warna saat hover */
.text-aab:hover {
    color: #8ab661;
}

.text-hijau{
    color: #587757;
}

.text-coklat{
    color: #4d4c44;
}

.hero {
    background: url("../images/asset/background-fix.webp") center center/cover no-repeat;
    min-height: 90vh;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(81, 81, 81, 0.5); /* overlay biar teks kebaca */
}

.hero .container {
    position: relative;
    z-index: 2;
}

/* Custom Button Primary */
.btn-primary {
    background-color: #b93236 !important;
    border: 1px solid #b93236 !important;
    color: #fff !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #9e2b2f !important; /* sedikit lebih gelap dari #b93236 */
    color: #fff !important;
    border: 1px solid #9e2b2f !important;
    box-shadow: none !important;
}

#loader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
    }

    .loader-img {
        width: 100px;
        opacity: 0;
        transform: scale(0.5);
        animation: popIn 0.8s ease forwards infinite alternate;
    }

    @keyframes popIn {
        0% {
            transform: scale(0.5);
            opacity: 0.3;
        }
        100% {
            transform: scale(1.1);
            opacity: 1;
        }
    }

.produk-card {
    position: relative;
    overflow: hidden;
    border-radius: .5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    height: 300px;
}

.produk-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease-in-out;
}

.produk-card .overlay h4 {
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

.produk-card:hover img {
    transform: scale(1.1);
}

.produk-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.produk-card-katalog {
    position: relative;
    overflow: hidden;
    border-radius: .5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    height: 220px;
}

.produk-card-katalog .img-katalog {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .3s ease, filter .3s ease;
}

.produk-card-katalog:hover .img-katalog {
    transform: scale(1.03);
    filter: brightness(0.85);
}

.produk-card-katalog .overlay-katalog {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.produk-card-katalog .overlay-katalog h4 {
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

.social-link {
    text-decoration: none !important; /* hapus garis bawah */
    transition: transform 0.2s ease, color 0.2s ease;
  }
  .social-link:hover {
    transform: scale(1.2);
    color: #ffd4d5 !important;
  }

    .client-box {
    min-height: 120px; /* samain tinggi semua box */
  }
  .client-box img {
    max-height: 65px;
    object-fit: contain;
  }

   #faq-section .accordion-button {
    font-weight: 600;
    color: #0b2545; /* dark-blue */
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,250,250,0.98));
  }
  #faq-section .accordion-body {
    color: #374151; /* muted slate */
    background-color: #fff;
  }
  /* Add gentler card shadow */
  #faq-section .accordion-item {
    transition: transform .12s ease, box-shadow .12s ease;
  }
  #faq-section .accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(12, 40, 80, 0.06);
  }

  .product-card-wrapper {
    transition: transform .25s ease, box-shadow .25s ease;
}

.product-card-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.product-card-image {
    height: 240px;
    object-fit: cover;
    width: 100%;
}

.btn-detail {
    transition: 0.2s;
}

.btn-detail:hover {
    background-color: #218838 !important;
}

.produk-card-kecil {
    transition: transform .2s ease, box-shadow .2s ease;
    border-radius: 12px;
}

.produk-card-kecil:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}
