/* Liquid Effect Styles for Value Icons */
.value-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: #eff0f4;
    border-radius: 52% 48% 33% 67% / 38% 45% 55% 62%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: 0.5s;
    box-shadow: 
        inset 15px 15px 15px rgba(0, 0, 0, 0.05),
        20px 25px 15px rgba(0, 0, 0, 0.05),
        20px 25px 25px rgba(0, 0, 0, 0.05),
        inset -15px -15px 20px rgba(255, 255, 255, 0.9);
    animation: morphing 8s ease-in-out infinite;
}

.value-icon:hover {
    border-radius: 50%;
    animation-play-state: paused;
    background: var(--primary-color);
    color: white;
}

.value-icon::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 15px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    animation: float 4s ease-in-out infinite;
}

.value-icon::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 22px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    animation: float 4s ease-in-out infinite 1s;
}

@keyframes morphing {
    0%, 100% {
        border-radius: 52% 48% 33% 67% / 38% 45% 55% 62%;
    }
    25% {
        border-radius: 40% 60% 70% 30% / 40% 50% 50% 60%;
    }
    50% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    75% {
        border-radius: 30% 70% 50% 50% / 50% 60% 40% 50%;
    }
}

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

/* Legacy drop effect for features section */
.drop {
    position: relative;
    width: 250px;
    height: 250px;
    box-shadow: 
        inset 15px 15px 15px rgba(0, 0, 0, 0.05),
        20px 25px 15px rgba(0, 0, 0, 0.05),
        20px 25px 25px rgba(0, 0, 0, 0.05),
        inset -15px -15px 20px rgba(255, 255, 255, 0.9);
    transition: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 52% 48% 33% 67% / 38% 45% 55% 62%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d66a50 100%);
    animation: morphing 8s ease-in-out infinite;
}

.drop:hover {
    border-radius: 50%;
    animation-play-state: paused;
}

.drop::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 60px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    animation: float 4s ease-in-out infinite;
}

.drop::after {
    content: '';
    position: absolute;
    top: 70px;
    left: 80px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    animation: float 4s ease-in-out infinite 1s;
}

/* Responsive */
@media (max-width: 768px) {
    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .drop {
        width: 200px;
        height: 200px;
    }
}
