.section-course {
    padding: 20px 0 30px 0;
    /* background-color: #fbfbfb; */
}

.section-course .course-card .title-top {
    background-color: #FFF;
    color: #000;
}

/* Header Category */
.header-category {
    margin-bottom: 30px;
    /* padding-bottom: 20px;
    border-bottom: 1px solid #eee; */
}

.header-category__info {
    display: flex;
    /* flex-direction: column; */
    gap: 8px;
    justify-content: space-between;
    align-items: center;
}

.header-category__title {
    font-size: 38px;
    font-weight: 500;
    color: #000;
    margin: 0;
    font-family: var(--font-utbebas);
}

.header-category__count {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.header-category__count span {
    font-weight: 600;
    color: var(--bv-primary);
}

/* Course Grid */
.course-grid {
    margin-top: 20px;
}

.pagination-wrapper {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

/* Empty State */
.empty-state {
    padding: 100px 20px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.empty-state__visual {
    position: relative;
    margin-bottom: 32px;
}

.empty-state__icon-box {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    color: var(--bv-primary);
    animation: float 4s ease-in-out infinite;
}

.empty-state__dots {
    position: absolute;
    top: -10px;
    right: -10px;
    display: flex;
    gap: 4px;
}

.empty-state__dots span {
    width: 8px;
    height: 8px;
    background: var(--bv-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

.empty-state__dots span:nth-child(2) {
    animation-delay: 0.4s;
}

.empty-state__dots span:nth-child(3) {
    animation-delay: 0.8s;
}

.empty-state__title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.empty-state__desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 32px;
}

.empty-state__action .cus-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.empty-state__action .cus-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(var(--bv-primary-rgb), 0.2);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.6;
    }

    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

@media (max-width: 767px) {
    .header-category__title {
        font-size: 30px;
    }

    .header-category__info {
        flex-direction: column;
        align-items: start;
    }

    .empty-state {
        padding: 60px 20px;
    }

    .section-course {
        padding: 20px 0 30px 0;
    }

    .header-category {
        margin-bottom: 20px;
    }
}