/* Custom Styling */
.hero-bg {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3436 100%);
}

.floating-anim {
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.feature-item {
    border-right: 1px solid #eee;
}

.hover-up {
    transition: all 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,200,83,0.15) !important;
}

/* Jajaran Genjang dengan Bootstrap */
.step-card {
    transform: skew(-15deg);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    position: relative;
}

.step-card p, .step-card i {
    transform: skew(15deg);
}

.arrow-anim {
    position: absolute;
    right: -25px;
    top: 40%;
    color: #ff3850;
    animation: arrowMove 1.5s infinite;
    z-index: 5;
}

@keyframes arrowMove {
    0% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(15px); opacity: 0; }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s all ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}