/* Mobile Carousel Controls - Simple & Small */
.mobile-carousel-control {
    width: 30px !important;
    height: 30px !important;
    background-color: rgba(255, 255, 255, 0.5) !important;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.mobile-carousel-control:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.8) !important;
}

.mobile-carousel-control .carousel-control-prev-icon,
.mobile-carousel-control .carousel-control-next-icon {
    width: 12px;
    height: 12px;
}

/* Mobile Carousel Indicators */
.mobile-carousel-indicators {
    bottom: 15px;
}

.mobile-carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 0 4px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
}

.mobile-carousel-indicators button.active {
    background-color: white;
}

#mobile_carousel{
    display: none;
}

/* Responsive */
@media (max-width: 576px) {
    .carousel-slide-mobile {
        min-height: 400px !important;
    }

    .carousel-slide-mobile h2 {
        font-size: 1.3rem !important;
    }

    .carousel-slide-mobile h4 {
        font-size: 0.8rem !important;
    }

    .carousel-slide-mobile p {
        font-size: 0.8rem !important;
    }
}

/* Show mobile carousel hanya saat < 640px */
@media (max-width: 639px) {
    #mobile_carousel {
        display: block !important;
    }
}

/* Hide mobile carousel saat >= 640px */
@media (min-width: 640px) {
    #mobile_carousel {
        display: none !important;
    }
}