html, body {
    overflow-x: hidden !important;
}

/* HERO SECTION FIXED */
.hero-section {
    width: 100%;
    height: 1180px; /* tinggi terbaik agar gambar tidak terpotong */
    position: relative;
    overflow: hidden;
}

/* GAMBAR LEBIH TERLIHAT SEMPURNA */
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 30%; 
    /* 50% (center), 30% (turun sedikit agar wajah & gedung terlihat) */
}

/* FLOATING CARD POSISI TERBAIK */
.floating-card {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 60%);
    width: 70%;
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 30px 25px;
    text-align: center;

    /* animasi melayang */
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translate(-50%, 60%); }
    50% { transform: translate(-50%, 55%); }
    100% { transform: translate(-50%, 60%); }
}

/* HILANGKAN SCROLL HORIZONTAL */
html, body {
    overflow-x: hidden !important;
}


.fade-up {
    animation-name: fadeUp;
}

/* FOOTER */
.footer {
    background: #0b7d3e;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}
