#hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 135.5vh;
    background-image: url("/masterplans/assets/bannerbg.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0;
}

#hero .hero-desc-wrapper {
    display: block;
}

#hero .hero-desc-wrapper-mobile {
    display: none;
}

.hero-img {
    position: absolute;
    bottom: 0;
    right: 0;
    transform-origin: bottom right;
    margin: 0;
    padding: 0;
}

.hero-text {
    margin-top: 125px;
}

#hero h1 {
    margin: 0;
    font-size: 72px;
    font-weight: 700;
    color: #154a43;
}

#hero h2 {
    margin: 0;
    font-size: 72px;
    font-weight: bold;
    font-style: italic;
    padding-bottom: 5px;
    color: #30bead;
}

#hero h3 {
    margin-left: 20px;
    font-size: 72px;
    font-weight: bold;
    font-style: italic;
    color: #ff9800;
}

#hero h4 {
    color: #154a43;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero strong {
    color: #154a43;
}

#hero .header-container {
    display: flex;
    align-items: center;
}

#hero .btn-daftar-sekarang {
    position: relative;
    font-weight: bold;
    font-size: 22px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 15px 30px;
    margin-top: 30px;
    border-radius: 50px;
    cursor: pointer;
    color: black;
    text-decoration: none;
    background: linear-gradient(to right, rgb(255, 190, 32), rgb(255, 150, 0));
    background-size: 200% auto;
    background-position: left center;
    transition: background-position 0.4s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
    z-index: 10;
}

#hero .btn-daftar-sekarang:hover {
    background-position: right center;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
}

/* Mobile */
@media (max-width: 767px) {
    #hero .hero-desc-wrapper {
        display: none;
    }

    #hero .hero-desc-wrapper-mobile {
        display: block;
    }

    #hero .header-container {
        justify-content: start;
    }

    #hero .header-container h2,
    #hero .header-container h3 {
        font-size: 32px;
    }

    #hero {
        min-height: 650px;
        padding: 30px 20px 20px 20px;
        background-position: center;
    }

    .hero-text {
        position: relative;
        margin-top: 80px;
    }

    #hero h1,
    #hero h2,
    #hero h3 {
        font-size: 36px;
    }

    #hero h3 {
        margin-left: 10px;
    }

    #hero h4 {
        font-size: 18px;
    }

    .hero-img {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        max-width: 500px;
        margin-top: 40px;
    }

    #hero .btn-daftar-sekarang {
        font-size: 18px;
        padding: 12px 25px;
        margin-top: 15px;
    }
}

/* Tablet */
@media (max-width: 1023px) and (min-width: 768px) {
    #hero .hero-desc-wrapper {
        display: none;
    }

    #hero .hero-desc-wrapper-mobile {
        display: block;
    }

    #hero {
        min-height: 70vh;
        padding: 50px 40px 40px 40px;
        background-position: center;
    }

    .hero-text {
        margin-top: 75px;
        margin-bottom: 250px;
    }

    #hero h1,
    #hero h2,
    #hero h3 {
        font-size: 48px;
    }

    #hero h4 {
        font-size: 20px;
    }

    #hero .header-container {
        gap: 10px;
        margin-bottom: 25px;
    }

    .hero-img {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        margin-top: 40px;
    }

    #hero .btn-daftar-sekarang {
        font-size: 20px;
        padding: 14px 28px;
        margin-top: 25px;
    }
}
