body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #f2ece4 0%, #e2e2e2 100%);
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    padding-top: 100px;
}

/* Navbar Style */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.navbar-brand {
    font-weight: 700;
    color: #007bff;
    display: flex;
    align-items: center;
}
.navbar-brand i { margin-right: 10px; font-size: 1.5rem; }

/* Dropdown Design Customization */
.navbar-nav .nav-item {
    margin: 0 5px;
}

.nav-link {
    font-weight: 600;
    color: #555 !important;
    font-size: 0.9rem;
    padding: 8px 15px !important;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: #007bff !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 10px;
    margin-top: 15px !important;
    animation: fadeIn 0.3s ease;
}

.dropdown-item {
    font-weight: 500;
    font-size: 0.85rem;
    padding: 10px 15px;
    border-radius: 8px;
    color: #555;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #007bff;
    transform: translateX(5px);
}

.dropdown-item i {
    margin-right: 8px;
    color: #007bff;
}

/* Animasi Dropdown */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Garis pemisah dropdown yang halus */
.dropdown-divider {
    border-top: 1px solid #f1f1f1;
}

/* Header & Content */
.welcome-text {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}
.welcome-text h1 {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.content-wrapper {
    flex: 1 0 auto;
    padding-bottom: 40px;
}

.main-container {
    width: 90%;
    max-width: 850px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.slider-section {
    height: 320px;
    background: #eee;
}
.carousel-item img {
    height: 320px;
    object-fit: cover;
}

/* Menu Section */
.menu-section {
    padding: 45px 20px 65px 20px;
    text-align: center;
}

/* Subjudul Diperbesar dan Dipercantik */
.menu-subtitle {
    font-size: 1.15rem; /* Ukuran ditingkatkan */
    font-weight: 500; /* Bobot sedikit lebih tebal */
    color: #555;
    letter-spacing: 0.8px;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}
.menu-subtitle::after {
    content: "";
    display: block;
    width: 60px; /* Garis aksen diperlebar */
    height: 3px;
    background: #007bff;
    margin: 12px auto 0;
    border-radius: 5px;
    opacity: 0.7;
}

/* Tombol Dasar */
.btn-menu {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    margin: 0 auto;
}

.btn-menu i {
    font-size: 2rem;
    margin-bottom: 8px;
}

.btn-menu span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
}

.btn-menu:hover {
    transform: translateY(-8px);
    background-color: #ffffff !important;
}

/* Variasi Warna Tombol (Light Pastels) */
.btn-aset { background-color: #e3f2fd; }
.btn-aset i { color: #1976d2; }
.btn-aset:hover { box-shadow: 0 12px 20px rgba(25, 118, 210, 0.2); border-color: #bbdefb; }

.btn-warga { background-color: #e8f5e9; }
.btn-warga i { color: #388e3c; }
.btn-warga:hover { box-shadow: 0 12px 20px rgba(56, 142, 60, 0.2); border-color: #c8e6c9; }

.btn-faktur { background-color: #fff3e0; }
.btn-faktur i { color: #f57c00; }
.btn-faktur:hover { box-shadow: 0 12px 20px rgba(245, 124, 0, 0.2); border-color: #ffe0b2; }

.btn-proyek { background-color: #f3e5f5; }
.btn-proyek i { color: #7b1fa2; }
.btn-proyek:hover { box-shadow: 0 12px 20px rgba(123, 31, 162, 0.2); border-color: #e1bee7; }

/* Warna Tambahan untuk Menu Baru */
.btn-pasar { background-color: #fffde7; }
.btn-pasar i { color: #fbc02d; }
.btn-pasar:hover { box-shadow: 0 12px 20px rgba(251, 192, 45, 0.2); border-color: #fff9c4; }

.btn-lapor { background-color: #fbe9e7; }
.btn-lapor i { color: #d84315; }
.btn-lapor:hover { box-shadow: 0 12px 20px rgba(216, 67, 21, 0.2); border-color: #ffccbc; }

.btn-tanya { background-color: #e0f7fa; }
.btn-tanya i { color: #00838f; }
.btn-tanya:hover { box-shadow: 0 12px 20px rgba(0, 131, 143, 0.2); border-color: #b2ebf2; }

/* Tambahan agar teks di dalam tombol lingkaran tidak meluap */
.btn-menu span {
    text-align: center;
    padding: 0 5px;
    display: block;
}

/* Footer */
.footer-full {
    flex-shrink: 0;
    background: #ffffff;
    border-top: 1px solid #dee2e6;
    padding: 15px 0;
    color: #6c757d;
    font-size: 0.85rem;
    width: 100%;
}
.footer-content { padding-left: 5%; padding-right: 5%; }

/* Modal */
.modal-content { border-radius: 15px; border: none; }