/* ========================================
   Carousel Custom Indicators
   ======================================== */

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    margin-left: 0 !important;
    list-style: none;
    gap: 0.375rem;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 8px !important;
    height: 8px !important;
    padding: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    text-indent: -999px;
    cursor: pointer;
    background-color: rgba(13, 202, 240, 0.3) !important;
    background-clip: padding-box;
    border: 1px solid rgba(13, 202, 240, 0.4) !important;
    border-top: 0;
    border-bottom: 0;
    border-radius: 50% !important;
    opacity: 1 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-indicators [data-bs-target]:hover {
    background-color: rgba(13, 202, 240, 0.5) !important;
    border-color: rgba(13, 202, 240, 0.6) !important;
    transform: scale(1.25);
    box-shadow: 0 0 8px rgba(13, 202, 240, 0.4);
}

.carousel-indicators .active {
    background-color: rgba(13, 202, 240, 0.9) !important;
    border-color: rgba(13, 202, 240, 0.8) !important;
    box-shadow: 0 0 10px rgba(13, 202, 240, 0.6);
}

.carousel-indicators .active:hover {
    transform: scale(1.15);
}

/* Carousel Navigation */
.carousel-control {
    display: none;
    width: 64px;
    opacity: 0;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .carousel-control {
        display: flex;
    }
    
    .carousel:hover .carousel-control {
        opacity: 1;
    }
    
    .carousel-control-prev {
        left: -64px;
    }
    
    .carousel-control-next {
        right: -64px;
    }
}

.carousel-nav-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(13, 202, 240, 0.2);
    border-radius: 50%;
    color: #0dcaf0;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(13, 202, 240, 0.3);
    transition: all 0.3s ease;
}

.carousel-nav-button:hover {
    background: rgba(13, 202, 240, 0.3);
    border-color: rgba(13, 202, 240, 0.5);
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(13, 202, 240, 0.3);
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    .carousel-control {
        opacity: 1;
    }
}
