/** menu head Mobile */

.sidebar_menu .menu-item-mobile ul {
    padding-left: 25px;
    margin-top: 5px;
    border-left: 2px solid #ddd;
}

.sidebar_menu .menu-item-mobile ul li a {
    display: block;
    padding: 6px 10px;
    font-size: 14px;
    transition: 0.3s;
}

.sidebar_menu .menu-item-mobile ul li a:hover {
    background: #f5f5f5;
    border-radius: 5px;
}

.sidebar_menu .menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar_menu .menu-link span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* arrow animasi */
.sidebar_menu .arrow {
    font-size: 12px;
    transition: 0.3s;
}

/* saat aktif (kebuka) */
.menu-item-mobile.active .arrow {
    transform: rotate(180deg);
}
.menu-item-mobile ul {
    display: none;
}

.menu-item-mobile ul.open {
    display: block;
}

.menu-item-mobile ul li a:hover {
    background: #fff3e6;
    color: blue !important;
    transform: translateX(8px);
}


/* Home about us */
.home_aboutus_section {
    padding: 90px 20px;
    background: url(/assets/images/banner/bg-scaled.jpg) center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

/* ðŸ”¥ OVERLAY FIX (JANGAN DOUBLE IMAGE) */
.home_aboutus_section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.75); /* layer terang */
    backdrop-filter: blur(4px);
    z-index: 1;
}

/* Container */
.home_aboutus_container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* IMAGE + ZOOM */
.home_aboutus_image {
    flex: 1;
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.9s ease;
    overflow: hidden;
    border-radius: 20px;
     background: url(/assets/images/banner/bg-scaled.jpg) center/cover no-repeat;
      box-shadow:  10px 8px 10px rgb(193 149 171);
}

.home_aboutus_image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: transform 0.6s ease;
}

/* ðŸ”¥ ZOOM HOVER */
.home_aboutus_image:hover img {
    transform: scale(1.08);
}

/* CONTENT */
.home_aboutus_content {
    flex: 1;
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.9s ease 0.2s;
    box-shadow:  10px 8px 10px rgb(193 149 171);

    background: url(/assets/images/banner/bg-scaled.jpg) center/cover no-repeat;
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* TEXT */
.home_aboutus_title {
    font-size: 42px;
    margin-bottom: 15px;
    color: #0f172a;
}

.home_aboutus_subtitle {
    color: #2563eb;
    margin-bottom: 20px;
    font-weight: 500;
}

.home_aboutus_desc {
    line-height: 1.7;
    margin-bottom: 15px;
    color: #334155;
}

/* ðŸ”¥ LIST ICON */
.home_aboutus_list {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.home_aboutus_list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #1e293b;
    font-weight: 500;
}

/* ICON STYLE */
.home_aboutus_list li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
}

/* BUTTON */
.home_aboutus_btn {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(90deg, #22c55e, #4ade80);
    color: #fff;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.home_aboutus_btn:hover {
    transform: scale(1.05);
    background: linear-gradient(90deg, #16a34a, #22c55e);
}

/* ðŸ”¥ STATISTIK */
.home_aboutus_stats {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.stat_item {
    flex: 1;
    text-align: center;
    background: rgba(255,255,255,0.7);
    padding: 15px;
    border-radius: 15px;
    backdrop-filter: blur(6px);
    transition: 0.3s;
}

.stat_item:hover {
    transform: translateY(-5px);
}

.stat_item h2 {
    font-size: 28px;
    color: #2563eb;
    margin-bottom: 5px;
}

.stat_item p {
    font-size: 14px;
    color: #334155;
}

/* ANIMATION */
.home_aboutus_section.show .home_aboutus_image,
.home_aboutus_section.show .home_aboutus_content {
    opacity: 1;
    transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
    .home_aboutus_container {
        flex-direction: column;
        text-align: center;
    }

    .home_aboutus_title {
        font-size: 28px;
    }

    .home_aboutus_content {
        padding: 20px;
    }

    .home_aboutus_stats {
        flex-direction: column;
    }
}


/* page about us css */
.page_aboutus_section {
    padding: 80px 20px;
    background: url(/assets/images/banner/bg-scaled.jpg) center/cover no-repeat;
    position: relative;
    z-index: 1;
    color: #1e293b; /* 🔥 default text gelap */
}

/* 🔥 overlay terang (bukan gelap) */
.page_aboutus_section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.75); /* putih transparan */
    z-index: -1;
}

.page_aboutus_section .container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* HEADER */
.aboutus_header h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f172a;
}

.aboutus_header p {
    color: #475569;
    max-width: 600px;
    margin: auto;
    line-height: 1.6;
}

/* CONTENT GRID */
.aboutus_content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

/* TEXT */
.aboutus_text h2 {
    margin-top: 25px;
    font-size: 22px;
    color: #0ea5e9; /* biru brand */
}

.aboutus_text p {
    line-height: 1.8;
    margin-top: 10px;
    color: #334155;
}

.aboutus_text ul {
    margin-top: 10px;
    padding-left: 20px;
}

.aboutus_text ul li {
    margin-bottom: 8px;
    color: #334155;
}

/* CONTACT BOX (🔥 clean white card) */
.aboutus_contact {
   background: url(/assets/images/banner/bg-scaled.jpg) center/cover no-repeat;
    backdrop-filter: blur(6px);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.aboutus_contact h3 {
    margin-bottom: 15px;
    color: #0ea5e9;
}

.aboutus_contact p {
    margin-bottom: 15px;
    font-size: 14px;
    color: #334155;
}

/* ICON */
.page_aboutus_section i {
    margin-right: 8px;
    color: #0ea5e9;
}

/* SOCIAL */
.aboutus_social {
    margin-top: 20px;
}

.aboutus_social h4 {
    margin-bottom: 10px;
}

.aboutus_social a {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 8px;
    padding: 8px 14px;
    background: #e0f2fe;
    color: #0284c7;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.aboutus_social a:hover {
    background: #0ea5e9;
    color: #fff;
    transform: scale(1.05);
}

/* MAP */
.aboutus_map {
    margin-top: 60px;
    text-align: center;
}

.aboutus_map h3 {
    margin-bottom: 15px;
    color: #0f172a;
}

.aboutus_map iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 12px;
    filter: contrast(95%);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .aboutus_content {
        grid-template-columns: 1fr;
    }

    .aboutus_header h1 {
        font-size: 28px;
    }
}
/* BACK TO TOP */
#backToTop {
    position: fixed;
    bottom: 10px;
    right: 20px;
    z-index: 999;

    width: 50px;
    height: 50px;
    line-height: 50px;

    background: linear-gradient(135deg, #007bff, #0056d2);
    color: #fff;

    border: none;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    cursor: pointer;

    display: none;
    transition: all 0.3s ease;

    box-shadow: 0 6px 18px rgba(0, 123, 255, 0.4);
}

/* HOVER EFFECT */
#backToTop:hover {
    background: linear-gradient(135deg, #0056d2, #003f9e);
    transform: translateY(-5px) scale(1.05);
}

/* WHATSAPP BUTTON */
#waButton {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #25D366;
    color: #fff;
    padding: 12px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 999;
    transition: all 0.3s ease;
}

/* ICON */
#waButton svg {
    width: 20px;
    height: 20px;
}

/* HOVER */
#waButton:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
}

/* ANIMASI PULSE */
#waButton::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.4);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* MOBILE */
@media(max-width: 768px){
    #waButton span {
        display: none;
    }
    #waButton {
        padding: 14px;
        border-radius: 50%;
    }
}

/* Home Blog */
/* =========================
   HOME BLOG SECTION
========================= */
.home_blog_section {
    padding: 90px 20px;
     background: url(/assets/images/banner/bg-scaled.jpg) center/cover no-repeat;
    backdrop-filter: blur(6px);
}

.section_title h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 10px;
}

.section_title p {
    color: #666;
    font-size: 15px;
    margin-bottom: 40px;
}

/* CARD */
.blog_card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    height: 100%;
}

.blog_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* IMAGE */
.blog_image {
    overflow: hidden;
    height: 220px;
}

.blog_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

/* 🔥 ZOOM HOVER */
.blog_card:hover img {
    transform: scale(1.1);
}

/* CONTENT */
.blog_content {
    padding: 20px;
}

.blog_date {
    font-size: 12px;
    color: #999;
    display: block;
    margin-bottom: 8px;
}

.blog_content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog_content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* FOOTER */
.blog_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.viewer {
    font-size: 13px;
    color: #888;
}

/* BUTTON */
.btn_blog {
    background: linear-gradient(45deg, #0d6efd, #3da5ff);
    color: #fff;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s;
}

.btn_blog:hover {
    background: linear-gradient(45deg, #0b5ed7, #0d6efd);
    color: #fff;
}

/* BADGE */
.blog_badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(45deg, #0d6efd, #3da5ff);
    color: #fff;
    padding: 5px 12px;
    font-size: 11px;
    border-radius: 20px;
    z-index: 2;
}

/* FIX POSITION */
.blog_card {
    position: relative;
}

/* =========================
   SKELETON LOADING
========================= */
.skeleton {
    padding: 15px;
}

.skeleton-img {
    height: 200px;
    background: #ddd;
    border-radius: 10px;
    margin-bottom: 15px;
    animation: shimmer 1.5s infinite;
}

.skeleton-text {
    height: 15px;
    background: #ddd;
    margin-bottom: 10px;
    border-radius: 5px;
    animation: shimmer 1.5s infinite;
}

.skeleton-text.short {
    width: 60%;
}

/* SHIMMER EFFECT */
@keyframes shimmer {
    0% {
        background-position: -400px 0;
    }
    100% {
        background-position: 400px 0;
    }
}

.skeleton-img,
.skeleton-text {
    background: linear-gradient(
        90deg,
        #eee 25%,
        #ddd 50%,
        #eee 75%
    );
    background-size: 400px 100%;
}

/* =========================
   LAZY IMAGE FADE IN
========================= */
.lazyload {
    opacity: 0;
    transition: 0.5s;
}

.lazyloaded {
    opacity: 1;
}

/* //// Detail-blog */
.detail_blog_section {
    padding: 100px 20px;
    background: url(/assets/images/banner/bg-scaled.jpg) center/cover no-repeat;
    backdrop-filter: blur(6px);
}

.blog_detail {
    max-width: 800px;
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.blog_detail h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.blog_meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
}

.blog_image img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

.blog_content {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

.blog_content img {
    max-width: 100%;
    border-radius: 10px;
    margin: 15px 0;
}

.blog_share {
    margin-top: 30px;
    display: flex;
    gap: 10px;
}

.blog_share a {
    background: #0d6efd;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s;
}

.blog_share a:hover {
    background: #0b5ed7;
}

.blog-content p{
    line-height: 1.8;
    color: #444;
}

.blog-detail img:hover{
    transform: scale(1.02);
    transition: 0.3s;
}

.object-fit-cover{
    object-fit: cover;
}

.produk-item{
    transition: 0.3s;
}

.produk-item:hover{
    transform: translateX(5px);
}

.card-header{
    background: #fff;
    border-bottom: 2px solid #f1f1f1;
}
.blog-content p{
    line-height: 1.8;
    color: #444;
}

.blog-detail img:hover{
    transform: scale(1.02);
    transition: 0.3s;
}

.object-fit-cover{
    object-fit: cover;
}

.produk-item{
    transition: 0.3s;
}

.produk-item:hover{
    transform: translateX(5px);
}

.card-header{
    background: #fff;
    border-bottom: 2px solid #f1f1f1;
}

/* hanya aktif slider di mobile */
@media (min-width: 768px){
    .populerSwiper .swiper-wrapper,
    .produkSwiper .swiper-wrapper{
        display: block;
    }

    .populerSwiper .swiper-slide,
    .produkSwiper .swiper-slide{
        margin-bottom: 15px;
    }
}

/* card */
.populer-item img{
    height: 120px;
    object-fit: cover;
}

.produk-card img{
    height: 100px;
    object-fit: cover;
}

.produk-card{
    padding: 5px;
    border-radius: 10px;
    transition: 0.3s;
}

.produk-card:hover{
    background: #f8f9fa;
}


/*/PAge Blog /*/

.blog-card {
    background: url(/assets/images/banner/bg-scaled.jpg) center/cover no-repeat;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* IMAGE */
.blog-img {
    position: relative;
    overflow: hidden;
    height: 180px;
    border-radius: 12px 12px 0 0;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.blog-card:hover img {
    transform: scale(1.1);
}

/* BADGE BARU */
.badge-baru {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff3b3b;
    color: #fff;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

/* CONTENT */
.blog-content {
    padding: 12px;
}

/* META TOP */
.blog-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    margin-bottom: 6px;
    color: #777;
}

/* DATE */
.blog-date i {
    margin-right: 4px;
}

/* VIEW */
.blog-view {
    background: #f1f1f1;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 11px;
    color: #333;
}

.blog-view i {
    margin-right: 3px;
}

/* TITLE */
.blog-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    height: 40px;
    overflow: hidden;
    margin-bottom: 2px;
}

.blog-title a {
    color: #222;
    text-decoration: none;
}

.blog-title a:hover {
    color: #ff6600;
}

/* DESC */
.blog-desc {
    font-size: 12px;
    color: #666;
    height: 30px;
    overflow: hidden;
}

/* META */
.blog-meta {
    font-size: 12px;
    color: #777;
    margin-top: 8px;
}

/* MOBILE */
@media (max-width: 768px) {
    .blog-img {
        height: 140px;
    }
}