/* ===============================
   HERO HOME FULL BACKGROUND
================================ */

#home {
    position: relative;
}

#home .hero-section.hero-style-5 {
    min-height: 100vh;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
    display: flex;
    align-items: center;
}


/* overlay transparan */

#home .hero-section.hero-style-5::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

#home .container {
    position: relative;
    z-index: 2;
}


/* sembunyikan gambar kanan (hero-img.svg) */

.hero-image {
    display: none;
}


/* navbar transparan */

.header.header-6 {
    position: absolute;
    width: 100%;
    z-index: 999;
}

.navbar-area {
    background: rgba(0, 0, 0, 0.35) !important;
    backdrop-filter: blur(8px);
}

.navbar-nav li a {
    color: #fff !important;
}

.navbar-nav li a.active {
    color: #00d9ff !important;
}


/* teks hero putih */

.hero-content-wrapper h2,
.hero-content-wrapper p {
    color: #fff;
}


/* ===============================
   PENGAJUAN & PENGADUAN MODERN
================================ */

.feature-section {
    position: relative;
    padding: 100px 0;
}


/* kartu */

.single-feature {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    transition: all .4s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}


/* efek hover */

.single-feature:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .15);
}


/* icon jadi bulat tengah */

.single-feature .icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: float 4s ease-in-out infinite;
}

#pengaduan .single-feature .icon {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
}


/* icon besar */

.single-feature .icon i {
    font-size: 42px;
    color: #fff;
    z-index: 2;
}


/* animasi melayang */

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0);
    }
}


/* konten tengah */

.single-feature .content {
    text-align: center;
    padding: 20px 25px 35px;
}

.single-feature h5 {
    font-weight: 700;
    margin-bottom: 10px;
}


/* tombol modern */

.single-feature .btn {
    border-radius: 30px;
    font-weight: 600;
    transition: all .3s ease;
}

.single-feature .btn:hover {
    transform: scale(1.05);
}


/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 991px) {
    .feature-section {
        padding: 70px 0;
    }
    .single-feature {
        margin-bottom: 30px;
    }
    .single-feature .icon {
        width: 100px;
        height: 100px;
    }
}