/* ============================================
   SLIDE NAVIGATION - RIGHT SIDE BOTTOM
   Horizontal dots for slide navigation
   Only visible on hero section
   ============================================ */
.slide-navigation {
    position: absolute;
    bottom: 40px;
    right: 60px;
    display: flex;
    flex-direction: row;
    gap: 12px;
    z-index: 20;
}

.slide-dot {
    width: 35px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slide-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    width: 45px;
}

.slide-dot.active {
    background: #da4141;
    width: 55px;
    box-shadow: 0 0 20px rgba(218, 65, 65, 0.5);
}

/* ============================================
   SCROLL DOWN INDICATOR - CENTER BOTTOM
   Animated mouse icon with scroll text
   Only visible on hero section
   ============================================ */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 20;
    animation: fadeInUp 1s ease 1s both;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 13px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #da4141;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 20px;
    }
}

.scroll-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.scroll-text i {
    font-size: 14px;
    color: #da4141;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(5px);
    }
    60% {
        transform: translateY(3px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .slide-navigation {
        right: 40px;
        bottom: 50px;
        gap: 10px;
    }
    
    .slide-dot {
        width: 28px;
    }
    
    .slide-dot.active {
        width: 40px;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .mouse {
        width: 20px;
        height: 32px;
    }
    
    .wheel {
        width: 2px;
        height: 5px;
    }
    
    .scroll-text {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .slide-navigation,
    .scroll-indicator {
        display: none;
    }
}
