/* =====================================================
   PKP CAROUSEL - FULL FEATURE (JS Version)
   AutoPlay 5 detik | Panah Navigasi | Dots | Hover Pause
===================================================== */

.pkp-carousel-full {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Judul Section */
.pkp-carousel-full .pkp-section-title {
    display: inline-block;
    color: #8b1c1c;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 48px;
    padding-bottom: 12px;
    border-bottom: 3px solid #d4af37;
    text-align: center;
    width: auto;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* Track wrapper */
.pkp-carousel-track {
    overflow: hidden;
    width: 100%;
    position: relative;
}

/* Slides container - flex */
.pkp-carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
}

/* Setiap group slide */
.pkp-carousel-group {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-shrink: 0;
    width: calc(100% - 30px);
}

/* Setiap item logo */
.pkp-carousel-item {
    flex: 1;
    min-width: 0;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 24px 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.pkp-carousel-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px -10px rgba(139, 28, 28, 0.15);
    border-color: #d4af37;
    background: #ffffff;
}

/* Wrapper gambar */
.pkp-carousel-item .pkp-img-wrap {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gambar */
.pkp-carousel-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(100%) opacity(0.6);
}

.pkp-carousel-item:hover img {
    filter: grayscale(0) opacity(1);
    transform: scale(1.05);
}

/* Nama indeks */
.pkp-carousel-item .pkp-item-name {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    transition: color 0.3s ease;
}

.pkp-carousel-item:hover .pkp-item-name {
    color: #8b1c1c;
}

/* =====================================================
   PANAH NAVIGASI
===================================================== */

.pkp-carousel-arrow {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: #8b1c1c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(139, 28, 28, 0.3);
    z-index: 10;
    opacity: 0.8;
}

.pkp-carousel-arrow:hover {
    background: #d4af37;
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

.pkp-carousel-arrow-left {
    left: 10px;
}

.pkp-carousel-arrow-right {
    right: 10px;
}

/* =====================================================
   DOTS INDICATOR
===================================================== */

.pkp-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
}

.pkp-carousel-dot {
    width: 10px;
    height: 10px;
    background: #e2e8f0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pkp-carousel-dot:hover {
    background: #cbd5e1;
}

.pkp-carousel-dot.active {
    background: #8b1c1c;
    width: 28px;
    border-radius: 10px;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 992px) {
    .pkp-carousel-group {
        gap: 20px;
    }
    
    .pkp-carousel-slides {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .pkp-carousel-full {
        padding: 30px 15px;
    }
    
    .pkp-carousel-item {
        padding: 18px 15px;
    }
    
    .pkp-carousel-item .pkp-img-wrap {
        width: 50px;
        height: 50px;
    }
    
    .pkp-carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .pkp-carousel-full .pkp-section-title {
        font-size: 12px;
        letter-spacing: 3px;
        margin-bottom: 35px;
    }
}

@media (max-width: 640px) {
    .pkp-carousel-item {
        padding: 15px 12px;
    }
    
    .pkp-carousel-group {
        gap: 15px;
    }
    
    .pkp-carousel-slides {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .pkp-carousel-item {
        padding: 12px 8px;
        gap: 10px;
    }
    
    .pkp-carousel-item .pkp-img-wrap {
        width: 40px;
        height: 40px;
    }
    
    .pkp-carousel-item .pkp-item-name {
        font-size: 9px;
    }
    
    .pkp-carousel-arrow {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .pkp-carousel-dots {
        margin-top: 30px;
        gap: 8px;
    }
    
    .pkp-carousel-dot {
        width: 8px;
        height: 8px;
    }
    
    .pkp-carousel-dot.active {
        width: 22px;
    }
}