.hero-footer-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 5;
}

.shape {
    position: absolute;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 8px;
    animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(45deg);
}

.shape:nth-child(2) {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    border-radius: 50%;
}

.shape:nth-child(3) {
    width: 80px;
    height: 30px;
    top: 40%;
    right: 25%;
    animation-delay: 4s;
    transform: rotate(-30deg);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
        opacity: 1;
    }
}

/* Hero Content Styles */
.hero-content {
    padding: 6rem 0 4rem 0;
    position: relative;
    z-index: 10;
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
    padding: 0;
    background: transparent;
    border: none;
}

.stat-number {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #22c55e;
    font-weight: 800;
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #d1d5db;
    font-size: 1.25rem;
    font-weight: 400;
}

.hero-title {
    font-weight: 700;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-cta-button {
    border: 2px solid rgba(255, 255, 255, 0.928);
    background: transparent;
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.hero-cta-button:hover {
    background-color: #76E874;
    color: white;
    border: 2px solid #76E874;
    transform: scale(1.05);
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-footer-section {
        padding: 3rem 0;
        min-height: auto;
    }

    .stats-container {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .hero-cta-button {
        width: 100%;
        max-width: 250px;
    }

    .hero-content {
        padding: 1rem 0 2rem 0;
    }
}
 .footer-gradient-bg {
     background: linear-gradient(to top,
             #000000 0%,
             /* Hitam solid di bawah */
             rgba(0, 0, 0, 0.9) 35%,
             rgba(0, 0, 0, 1.0) 70%,
             rgba(0, 0, 0, 0.8) 85%,
             transparent 100%
             /* Transparan di atas */
         );
 }
@media (max-width: 480px) {
    .stats-container {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }
}