/* IMAGE */
.hero-image-wrapper {
    position: relative;
    display: inline-block;
}

.hero-image {
    max-height: 800px;
    width: auto;
    max-width: 100%;
    z-index: 2;
    position: relative;
}

/* glow belakang gambar */
.hero-image-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle,
        rgba(34, 211, 238, 0.25),
        transparent 70%
    );
    filter: blur(70px);
    z-index: 1;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .hero-image {
        max-height: 420px;
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .hero-image {
        max-height: 320px;
    }

    .hero-section {
        padding-top: 100px;
        padding-bottom: 60px;
    }
}

.btn-futuristic {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 26px;
    border-radius: 999px;
    background: linear-gradient(
        135deg,
        #E6FF2A,
        #E6FF2B,
        #E6FF2C
    );
    color: #000;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    letter-spacing: .3px;
    overflow: hidden;
    box-shadow:
        0 10px 30px rgba(13,110,253,.35),
        inset 0 0 0 1px rgba(255,255,255,.15);
    transition: all .35s ease;
}

/* Glow layer */
.btn-futuristic::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );
    transform: translateX(-100%);
    transition: transform .6s ease;
}

/* Arrow */
.btn-futuristic .arrow {
    font-style: normal;
    transition: transform .35s ease;
}

/* Hover effect */
.btn-futuristic:hover {
    transform: translateY(-2px);
    box-shadow:
       0 8px 18px #E6FF2A,
        inset 0 0 0 1px rgba(255,255,255,.25);
}

.btn-futuristic:hover::before {
    transform: translateX(100%);
}

.btn-futuristic:hover .arrow {
    transform: translateX(6px);
}

/* Active */
.btn-futuristic:active {
    transform: translateY(0);
    box-shadow:
        0 8px 18px #E6FF2A;
}

/* Mobile */
@media (max-width: 576px) {
    .btn-futuristic {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
}


.hero-image {
    position: relative;
    min-height: 95vh;
    background: url('/images/banner.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* overlay gelap */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            120deg,
            rgba(2,6,23,.85) 0%,
            rgba(2,6,23,.75) 50%,
            rgba(2,6,23,.6) 100%
        );
    z-index: 1;
}

/* glow futuristic */
.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            600px at 80% 30%,
            rgba(230,255,42,.18),
            transparent 60%
        );
    z-index: 2;
    pointer-events: none;
}

/* konten di atas overlay */
.hero-image .container {
    z-index: 3;
}

/* badge */
.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(230,255,42,.15);
    border: 1px solid rgba(230,255,42,.6);
    color: #E6FF2A;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* title */
.hero-title {
    font-size: clamp(40px, 4vw, 64px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
}

/* desc */
.hero-desc {
    max-width: 560px;
    font-size: 16px;
    color: #cbd5f5;
    margin-bottom: 32px;
}

/* button */
.hero-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 36px;
    border-radius: 50px;
    background: #E6FF2A;
    color: #020617;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 0 40px rgba(230,255,42,.45);
    transition: all .35s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 60px rgba(230,255,42,.7);
}
