/* Custom Styling */
.hero-bg {
    background: url('images/heroback.jpg') no-repeat center center;
    background-size: cover;
}

.hero-glow {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 70%);
    filter: blur(80px);
    z-index: 0;
}

.hero-title {
    text-shadow: 2px 4px 8px rgba(0,0,0,0.6);
    letter-spacing: 1.5px;
}

.hero-desc {
    font-weight: 600;
    text-shadow: 1px 2px 4px rgba(0,0,0,0.6);
}

.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);
}

.step-item {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s all ease;
}

.step-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* Tambahan untuk Card & Section Title */
.shadow-strong {
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.05);
}

.bg-light-soft {
    background-color: #f4f7f9;
}

.section-title-wrapper {
    background: #fff;
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.section-subtitle {
    display: block;
    font-weight: 700;
    color: #198754;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}