/* Unit Usaha Section - Using Informasi Styling */
.informasi-section {
    background: white;
    padding: 80px 0;
    position: relative;
    margin-bottom: 0;
    margin-top: 0;
    padding-top: 3rem;
    padding-bottom: 1rem;
}

.informasi-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.informasi-header {
    margin-bottom: 3rem;
}

.informasi-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1e3c72;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.informasi-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.informasi-title {
    font-size: 2.5rem;
    color: #1e3c72;
    font-weight: 700;
}

.lihat-semua {
    color: #1e3c72;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lihat-semua:hover {
    color: #0d6efd;
    transform: translateX(5px);
}

/* Info Cards - UPDATED FOR HORIZONTAL SCROLL WITHOUT SCROLLBAR */
.informasi-carousel {
    margin-bottom: 3rem;
    position: relative;
}

.informasi-cards-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    padding-bottom: 1rem;
    /* Hide scrollbar for all browsers */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

/* Hide scrollbar for Webkit browsers (Chrome, Safari) */
.informasi-cards-wrapper::-webkit-scrollbar {
    display: none;
}

.informasi-cards {
    display: flex;
    gap: 2rem;
    /* Remove grid and transition */
}

.info-card {
    background: white;
    border: 1px solid #e0e7ff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    flex: 0 0 calc(33.333% - 1.333rem); /* 3 cards visible at once */
    min-width: 300px; /* Minimum width for cards */
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
}

.info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.info-card:hover .info-image img {
    transform: scale(1.1);
}

.info-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #1e3c72;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

.info-content {
    padding: 1.5rem;
}

.info-title {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 600;
    min-height: 3.2rem;
}

.info-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #999;
}

.info-link {
    margin-left: auto;
    color: #1e3c72;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: #0d6efd;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.carousel-dot:hover {
    background: #1e3c72;
    transform: scale(1.15);
}

.carousel-dot.active {
    background: #1e3c72;
    transform: scale(1.2);
    width: 28px;
    border-radius: 5px;
}

/* No Data State */
.no-data {
    text-align: center;
    padding: 4rem 2rem;
    color: #999;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .informasi-container {
        padding: 0 2rem;
    }

    .info-card {
        flex: 0 0 calc(50% - 1rem); /* 2 cards visible on tablet */
        min-width: 280px;
    }

    .informasi-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .info-card {
        flex: 0 0 calc(100% - 2rem); /* 1 card visible on mobile */
        min-width: 260px;
    }

    .informasi-title {
        font-size: 2rem;
    }

    .informasi-container {
        padding: 0 1.5rem;
    }

    .informasi-section {
        padding: 60px 0;
    }

    .informasi-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .informasi-title {
        font-size: 1.6rem;
    }

    .informasi-label {
        font-size: 0.8rem;
    }

    .info-content {
        padding: 1.2rem;
    }

    .info-title {
        font-size: 0.9rem;
    }

    .lihat-semua {
        font-size: 0.85rem;
    }

    .info-card {
        min-width: 240px;
    }
}