/* FLOATING ICONS ----- */

.floating-icons-container {
    position: absolute;
    top: 25%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 15;
    pointer-events: none;
}

.floating-icons {
    display: flex;
    justify-content: space-around;
    width: 80%;
    max-width: 800px;
}

.floating-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    animation-delay: 0s;
    background-color: rgba(154, 194, 164, 0.9);
}

.floating-icon:nth-child(2) {
    animation-delay: 1s;
    background-color: rgba(116, 173, 140, 0.9);
}

.floating-icon:nth-child(3) {
    animation-delay: 2s;
    background-color: rgba(124, 135, 124, 0.9);
}

.floating-icon:nth-child(4) {
    animation-delay: 3s;
    background-color: rgba(42, 86, 66, 0.9);
}

.floating-icon:nth-child(5) {
    animation-delay: 4s;
    background-color: rgba(33, 51, 43, 0.9);
}

.floating-icon i {
    font-size: 1.8rem;
    color: white;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

/* SCROLLDOWN INDICATOR ----- */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--darker);
    font-size: 0.9rem;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s infinite;
    opacity: 0.8;
    transition: opacity 0.3s;
    text-decoration: none;
}

.scroll-down:hover {
    opacity: 1;
}

.scroll-down span {
    display: none;
}

.scroll-down i {
    margin-top: 5px;
    font-size: 1.8rem;
}

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

/* PROCESS STEPS ----- */

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    z-index: 1;
}

.process-step {
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-number {
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.process-step h3 {
    margin-bottom: 15px;
}

.process-step:hover .step-number {
    background-color: var(--dark);
    transform: scale(1.1);
}

/* Responsive Design */

@media (max-width: 768px) {        
    .icon-card {
        height: 350px;
    }
    
    .floating-icon {
        width: 50px;
        height: 50px;
    }
    
    .floating-icon i {
        font-size: 1.2rem;
    }
    
    .floating-icons {
        width: 95%;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .process-step {
        margin-bottom: 3rem;
    }
    
    .process-step:last-child {
        margin-bottom: 0;
    }

    .step {
        flex-direction: column;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .floating-icon {
        width: 40px;
        height: 40px;
    }
    
    .floating-icon i {
        font-size: 1rem;
    }
    
    .scroll-down {
        font-size: 0.8rem;
    }
    
    .scroll-down i {
        font-size: 1.5rem;
    }
}
