/* ===== Section Scroll Indicators (Alternating Left/Right) ===== */

/* Base Scroll Indicator Style */
.section-scroll-indicator {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    animation: bounce 2s ease-in-out infinite;
}

.section-scroll-indicator span {
    color: #DC143C !important;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
}

.section-scroll-indicator i {
    font-size: 1.5rem;
    color: #FF6B35 !important;
    filter: drop-shadow(0 2px 5px rgba(255, 107, 53, 0.5));
}

/* Left Side Indicator */
.section-scroll-indicator.left {
    left: 30px;
    bottom: 50%;
    transform: translateY(50%);
}

.section-scroll-indicator.left i {
    transform: rotate(-90deg);
}

/* Right Side Indicator */
.section-scroll-indicator.right {
    right: 30px;
    bottom: 50%;
    transform: translateY(50%);
}

.section-scroll-indicator.right i {
    transform: rotate(90deg);
}

/* Bounce Animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(50%) translateX(0);
    }
    50% {
        transform: translateY(50%) translateX(10px);
    }
}

/* For left side, bounce left */
.section-scroll-indicator.left {
    animation: bounceLeft 2s ease-in-out infinite;
}

@keyframes bounceLeft {
    0%, 100% {
        transform: translateY(50%) translateX(0);
    }
    50% {
        transform: translateY(50%) translateX(-10px);
    }
}

/* For right side, bounce right */
.section-scroll-indicator.right {
    animation: bounceRight 2s ease-in-out infinite;
}

@keyframes bounceRight {
    0%, 100% {
        transform: translateY(50%) translateX(0);
    }
    50% {
        transform: translateY(50%) translateX(10px);
    }
}

/* Section positioning */
section {
    position: relative;
}

/* Responsive - Hide on mobile */
@media (max-width: 991px) {
    .section-scroll-indicator {
        display: none;
    }
}

/* Alternative vertical style for sections */
.section-scroll-indicator.vertical {
    flex-direction: column;
}

.section-scroll-indicator.vertical span {
    writing-mode: vertical-rl;
}

/* Glow effect on hover */
.section-scroll-indicator:hover i {
    color: var(--primary-red);
    filter: drop-shadow(0 0 10px rgba(220, 20, 60, 0.8));
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}
