body {
    font-family: 'Poppins', sans-serif;
}

/* Form Styles */
.form-label {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
} 

.form-label i {
    margin-right: 0.5rem;
    color: var(--green);
    width: 16px;
} 

.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
} 

.form-control:focus, .form-select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 0.25rem rgba(139, 195, 74, 0.25);
} 

.form-control:hover, .form-select:hover {
    border-color: var(--secondary);
}

.form-control[type="file"]::file-selector-button {
    border-radius: 10px;
    border: none !important;
}

/* Web Navbar */
.web-navbar {
    background-color: var(--primary);
    box-shadow: 0 4px 20px rgba(109, 76, 65, 0.3);
}

.web-navbar.transparent {
    background-color: transparent !important;
    box-shadow: none !important;
}

.web-navbar.navbar-scrolled {
    background-color: var(--primary) !important;
}

.web-navbar .navbar {
    position: relative;
    z-index: 2;
    padding: 1rem 0;
}

.web-navbar .navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 1.5rem;
    text-decoration: none;
}

.web-navbar .logo-desa {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
}

.web-navbar .navbar-nav {
    margin-left: auto;
}

.web-navbar .nav-link {
    color: var(--light);
    font-weight: 500;
    padding: 0.75rem 1.25rem !important;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.web-navbar .nav-link i {
    color: var(--green);
}

.web-navbar .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.web-navbar .nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.web-navbar .nav-link.active,
.web-navbar .nav-link.show {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.web-navbar .dropdown-menu {
    background: var(--primary);
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    padding: 1rem 0;
    margin: 0.5rem 0;
}

.web-navbar .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 28%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--primary);
}

.web-navbar .dropdown-item {
    color: var(--light);
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    display: flex;
    align-items: center;
}

.web-navbar .dropdown-item i {
    width: 20px;
    margin-right: 0.75rem;
    color: var(--light);
}

.web-navbar .dropdown-item.active,
.web-navbar .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
    border-left-color: var(--green);
}

.web-navbar .dropdown-item:focus {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
}

.web-navbar .dropdown-header {
    color: var(--light);
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.web-navbar .navbar-toggler {
    border: none;
    padding: 0.5rem .8rem;
    border-radius: 8px;
}

.web-navbar .navbar-toggler:focus {
    box-shadow: none;
}

.web-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Web Container */
.web-container:not(.beranda) {
    margin-top: 101.18px;
    padding-bottom: 48px;
}

/* Breadcrumb */
.breadcrumb-section {
    background: linear-gradient(135deg, var(--light), #fff);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(109, 76, 65, 0.1);
}

.breadcrumb-section .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-section .breadcrumb .breadcrumb-item {
    color: var(--primary);
}

.breadcrumb-section .breadcrumb .breadcrumb-item.active {
    color: var(--secondary);
}

.breadcrumb-section .breadcrumb .breadcrumb-item + .breadcrumb-section.breadcrumb .breadcrumb-item::before {
    color: var(--secondary);
}

.breadcrumb .breadcrumb-item a {
    color: var(--primary); 
    text-decoration: none;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2,
.section-title h3 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2 {
    font-size: 2.5rem;
}

.section-title h3 {
    font-size: 2rem;
}

.section-title h2::after,
.section-title h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--green);
    border-radius: 2px;
}

/* Beranda Carousel */
.beranda-carousel .carousel-item {
    max-height: 100vh;
}

.beranda-carousel .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.beranda-carousel .carousel-item img {
    object-fit: cover;
    height: 100%;
}

.beranda-carousel .carousel-caption {
    padding-left: 9rem;
    padding-right: 9rem;
    height: 100%;
    border-radius: 10px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding-top: 0;
    padding-bottom: 0;
    z-index: 10; 
}

.beranda-carousel .carousel-item .placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.beranda-carousel .carousel-caption .text {
    width: 50%;
    text-shadow: 2px 2px 0px black;
}

.beranda-carousel .carousel-control-next,
.beranda-carousel .carousel-control-prev {
    width: 7%;
    z-index: 10;
    font-size: 1.5rem;
}

.beranda-carousel .carousel-caption h1 {
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 3.25rem;
}

.beranda-carousel .carousel-caption p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Jelajahi Desa Section */
.explore-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
}

.explore-card:hover {
    transform: translateY(-8px);
}

.explore-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fff, var(--light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 2rem;
    color: var(--green);
}

.explore-card h4 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Sambutan Section */
.welcome-section {
    background: linear-gradient(135deg, var(--light), #fff);
}

.welcome-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.kepala-desa-photo {
    max-width: 350px;
    max-height: 350px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
}

.kepala-desa-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.welcome-text {
    flex: 1;
}

.welcome-text h3 {
    color: var(--primary);
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.welcome-text .position {
    color: var(--green);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Perangkat Desa Section */
.official-card {
    background: #fff;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.official-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.official-photo {
    max-width: 250px;
    max-height: 250px;
    margin: 0 auto 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
}

.official-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 50%; 
}

.official-card h5 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.official-position {
    color: var(--green);
    font-weight: 600;
    font-size: 1rem;
}

/* Berita Section */
.news-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.news-card:hover {
    transform: translateY(-3px);
}

.news-card .news-image {
    max-height: 250px;
}

.news-card .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card .news-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--green), var(--green));
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.news-card .news-date {
    color: var(--green);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.news-card .news-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.news-card .meta {
    font-size: 0.9rem;
}

.news-card .meta i {
    color: var(--green);
}

/* UMKM Section */
.umkm-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.umkm-card:hover {
    transform: translateY(-5px);
}

.umkm-card .umkm-image {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.umkm-card .umkm-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.umkm-card .umkm-content {
    padding: 1.5rem;
}

.umkm-card .umkm-content p {
    font-size: 0.9rem;
}

.umkm-card .umkm-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.umkm-card .umkm-category {
    color: var(--green);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.umkm-card .umkm-price {
    color: var(--green);
    font-size: 1.2rem;
}

.umkm-card .umkm-owner {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(109, 76, 65, 0.05);
    border-radius: 10px;
}

.umkm-owner .owner-avatar {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.umkm-owner .owner-info h6 {
    margin: 0;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.umkm-owner .owner-info small {
    color: #666;
    font-weight: 600;
    font-size: 0.8rem;
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(135deg,#fff, var(--light));
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 100%;
    width: 100%;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
}   

.gallery-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}   

.gallery-item:hover {
    transform: scale(1.03);
}

/* Tentang Desa Section */
.overview-section {
    background: linear-gradient(135deg, var(--light), #fff);
} 

.overview-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.village-stats {
    background: linear-gradient(135deg, var(--primary), var(--primary));
    color: #fff;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.village-stats .stat-item {
    text-align: center;
    padding: 1rem;
}

.village-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 0.5rem;
}

.village-stats .stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Visi Misi Section */
.vision-mission-section {
    background: #fff;
}

.vision-card, .mission-card {
    background: linear-gradient(135deg, var(--light), #fff);
    border-radius: 20px;
    padding: 3rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.vision-card h3, .mission-card h3 {
    color: var(--primary); 
    margin-bottom: 2rem;
    font-weight: 600;
}

.vision-card .card-inner {
    background: rgba(139, 195, 74, 0.1); 
    padding: 2rem; 
    border-radius: 15px; 
    border-left: 4px solid var(--green);
    transition: all 0.3s ease;
}

.vision-card .card-inner h5 {
    color: var(--primary); 
    font-weight: 600;
    line-height: 1.8; 
    text-align: center;
}

.vision-card .card-inner h5::before {
    content: '"';
    color: var(--primary);
    font-weight: bold;
}

.vision-card .card-inner h5::after {
    content: '"';
    color: var(--primary);
    font-weight: bold;
}

.vision-card .card-inner:hover,
.mission-list li:hover
 {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(139, 195, 74, 0.1);
    border-radius: 10px;
    border-left: 3px solid var(--green);
    transition: all 0.3s ease;
}

.mission-list li i {
    color: var(--green);
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.rounded-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    font-size: 1.5rem;
    color: #fff;
}

/* Bagan Desa Section */
.official-section {
    background: #fff;
    scroll-margin-top: 80px;
}   

.org-chart-container {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: color 0.3s ease-in-out;
}  

.org-chart-container .chart-selection {
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease-in-out;
}

.org-chart-container .chart-selection.active .rounded-icon {
    background: linear-gradient(135deg, #fff, var(--light));
    color: var(--green);
}

.org-chart-container .chart-selection:hover {
    transform: translateY(-3px);
}

.org-chart-container .chart-selection:hover i {
    color: var(--green);
    transition: color 0.3s ease-in-out;
}

.org-chart-container .chart-selection .rounded-icon {
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.org-chart-placeholder {
    width: 100%;
    min-height: 600px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 100%;
    position: relative;
}

.org-chart-placeholder img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: contain;
}

.org-chart-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

/* Lokasi Section */
.location-section {
    background: #f8f9fa;
}   

.location-info {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}   

.location-info h4 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 2rem;
}   

.location-info .batas-wilayah-section i,
.location-info .luas-wilayah-section i {
    color: var(--green); 
    font-size: 1.3rem;
}   

.map-container {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}  

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}   

.map-placeholder iframe {
    border-radius: 15px;
}

/* Statistics Cards */
.statistic-section {
    background: linear-gradient(135deg, var(--light), #fff);
}

.stat-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--primary));
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.stat-card .stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 2rem;
    color: #fff;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
}

.stat-card .stat-detail {
    font-size: 0.9rem;
    color: var(--green);
    margin-top: 0.5rem;
}

.visualisation-section {
    background: #f8f9fa;
}

/* Chart Container */
.chart-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.chart-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.chart-card .chart-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.chart-card .chart-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--green);
    border-radius: 2px;
}

.chart-card .chart-container {
    position: relative;
    height: 400px;
    margin-bottom: 1rem;
}

/* Summary Stats */
.summary-section {
    color: #fff;
    padding: 4rem 0;
}

.summary-section .summary-item {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--green);
}

.summary-section .summary-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.summary-section .summary-label {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Data Table */
.detail-table {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}   

.detail-table .table {
    margin: 0;
}   

.detail-table .table th {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 1rem;
    font-weight: 600;
}   

.detail-table .table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

/* Project Section */
.summary-project-section {
    background: linear-gradient(135deg, var(--light), #fff);
}

.project-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 5px solid var(--green);
    position: relative;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.project-card .project-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #ddd, #ccc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #999;
    position: relative;
}

.project-card .project-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.project-card .project-status {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--green);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.project-card .project-status.ongoing {
    background: #ff9800;
}

.project-card .project-status.planned {
    background: #2196f3;
}

.project-card .project-status.completed {
    background: #4caf50;
}

.project-card .project-status.delayed {
    background: #ee5a52;
}

.project-card .project-content {
    padding: 1.5rem;
}

.project-card .project-title {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.project-card .project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.project-card .project-budget {
    background: var(--light);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.project-card .project-timeline {
    color: #666;
    font-size: 0.9rem;
}

.project-card .project-timeline i {
    color: var(--primary);
    font-size: 0.9rem;
}

.project-card .progress-container {
    margin: 1rem 0;
}

.project-card .progress {
    height: 8px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.project-card .progress-bar {
    background: linear-gradient(90deg, var(--green), var(--dark-green));
    transition: width 0.3s ease;
}

.project-card .progress-text {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.5rem;
    text-align: right;
}

.service-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    background: #fff;
    gap: 0.5rem;
    border-radius: 15px;
    padding: 0.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-tabs .service-tab {
    flex: 1;
    width: 100%;
    min-width: 300px;
    max-width: 300px;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.service-tabs .service-tab:hover {
    background: rgba(139, 195, 74, 0.1);
    color: var(--primary);
}

.service-tabs .service-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(109, 76, 65, 0.3);
}

.service-tabs .service-tab i {
    font-size: 1.2rem;
    color: var(--green);
}

/* Form Layanan Style */
.service-form {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    display: none;
    border-top: 4px solid var(--green);
    opacity: 0;
} 

.service-form.active {
    display: block;
    animation: fadeInUp 0.4s ease forwards;
}

.service-form .form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.service-form .form-header h4 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-form .form-header p {
    color: #6c757d;
    font-size: 1rem;
}

.service-form .form-header .form-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fff, var(--light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: var(--green);
    font-size: 1.8rem;
}

.service-form .form-section-divider {
    background: #f8f9fa;
    padding: 1rem 1.5rem;
    margin: 2rem -3rem;
    border-left: 4px solid var(--green);
}

.service-form .form-section-title {
    color: var(--primary);
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
}

.service-form .form-section-title i {
    margin-right: 0.5rem;
    color: var(--green);
}

/* Pertanyaan Section */
.faq-section .accordion .accordion-item {
    border: none; 
    border-radius: 10px; 
    overflow: hidden;
}

.faq-section .accordion .accordion-button {
    background: #fff; 
    color: var(--primary); 
    font-weight: 600;
}

.faq-section .accordion .accordion-button:focus {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.faq-section .accordion .accordion-body {
    background: #fff; 
}

/* Jadwal Posyandu Cards */
.schedule-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--dark-green));
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.schedule-card .schedule-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.schedule-card .schedule-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: #fff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.schedule-card .schedule-info {
    flex-grow: 1;
    min-width: 0;
}

.schedule-card .schedule-info h4 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.project-card .project-content {
    padding: 1.5rem;
}

.schedule-card .schedule-details {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
}

.schedule-card .detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e9ecef;
}

.schedule-card .detail-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.schedule-card .detail-label {
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
}

.schedule-card .detail-label i {
    margin-right: 0.5rem;
    color: var(--green);
}

.schedule-card .detail-value {
    color: #495057;
    font-weight: 500;
}

.schedule-card .detail-value a {
    color: var(--primary);
}

/* Jadwal Ronda Card */
.day-schedule {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
} 

.day-schedule:hover {
    transform: translateY(-5px);
} 

.day-schedule.today {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(109, 76, 65, 0.3);
}

.day-schedule .day-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.day-schedule .today .day-name {
    color: var(--light);
}

.day-schedule .day-name i {
    color: var(--green);
}

.day-schedule .schedule-person {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--primary);
    border-left: 4px solid var(--primary);
}

.day-schedule .schedule-person i {
    color: var(--primary);
}

.day-schedule .today .schedule-person {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-left-color: var(--light);
}

.day-schedule .slot-available {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
} 

.day-schedule .slot-available a {
    color: var(--primary);
} 

.day-schedule .slot-available i {
    color: var(--primary);
} 

.day-schedule .today .slot-available {
    color: var(--primary);
}

/* Requirements Section */
.requirements-card {
    background: linear-gradient(135deg, #fff9f0, #fff);
    border-left: 5px solid #ff9800;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.requirements-card .requirements-title {
    color: #ff9800;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.requirements-card .requirements-list {
    color: #666;
    margin: 0;
    padding-left: 1.5rem;
}

.requirements-card .requirements-list li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Search Section */
.search-section {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
}

.search-section .search-form {
    max-width: 600px;
    margin: 0 auto;
}

.search-section .search-form h4 {
    color: var(--primary);
}

.search-section .btn-search {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 600;
    width: 100%;
    margin-top: 1.5rem;
}

.search-section .btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(109, 76, 65, 0.3);
    color: #fff;
}

.search-section .btn-search:active {
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    display: none;
    text-align: center;
    padding: 2rem;
} 

.loading .loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

.loading p {
    color: var(--secondary);
} 

/* Status Result Section */
.status-result {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 3rem;
}

.status-result .status-header {
    background: linear-gradient(135deg, var(--light), #fff);
    color: var(--primary);
    padding: 2rem;
    text-align: center;
}

.status-result .status-header h3 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.status-result .status-id {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    background: var(--green);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: #fff;
}

.status-result .status-content {
    padding: 2rem;
}

.status-result .status-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.status-result .info-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid var(--green);
}

.status-result .info-label {
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.status-result .info-value {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
}

/* Help Section */
.help-section {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #c8e6c9;
}

.help-section .help-icon {
    width: 80px;
    height: 80px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 2rem;
    color: #fff;
}

.help-section .help-title {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.help-section .contact-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.help-section .contact-btn {
    display: flex;
    align-items: center;
    background: #fff;
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.help-section .contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    color: var(--primary);
}

.help-section .contact-btn i {
    margin-right: 0.5rem;
    color: var(--green);
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.status-badge.pending {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.status-badge.processing {
    background: #cce7ff;
    color: #0056b3;
    border: 1px solid #74b9ff;
}

.status-badge.completed {
    background: #d4edda;
    color: #155724;
    border: 1px solid #00b894;
}

.status-badge.rejected {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #e17055;
}

/* No Result Found */
.no-result {
    text-align: center;
    padding: 3rem 2rem;
    display: none;
}

.no-result .no-result-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 3rem;
    color: var(--green);
}

.no-result .no-result h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Progress Timeline */
.progress-timeline {
    position: relative;
    padding: 2rem 0;
}

.progress-timeline h5 {
    color: var(--primary); 
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.progress-timeline .timeline-item {
    position: relative;
    padding: 1.5rem 0 1.5rem 4rem;
    border-left: 3px solid #e9ecef;
    margin-left: 1rem;
}

.progress-timeline .timeline-item:last-child {
    border-left-color: transparent;
}

.progress-timeline .timeline-item.active {
    border-left-color: var(--green);
}

.progress-timeline .timeline-item.completed {
    border-left-color: var(--dark-green);
}

.progress-timeline .timeline-icon {
    position: absolute;
    left: -1.5rem;
    top: 1.75rem;
    width: 3rem;
    height: 3rem;
    background: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #6c757d;
    border: 3px solid #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.progress-timeline .timeline-item.active .timeline-icon {
    background: var(--green);
    color: #fff;
    animation: pulse 2s infinite;
}

.progress-timeline .timeline-item.completed .timeline-icon {
    background: var(--dark-green);
    color: #fff;
}

.progress-timeline .timeline-content {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
}

.progress-timeline .timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #fff;
}

.progress-timeline .timeline-title {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.progress-timeline .timeline-desc {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.progress-timeline .timeline-date {
    color: var(--green);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Document Section */
.document-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.document-section .document-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.document-section .document-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.document-section .document-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border: 1px solid #e9ecef;
}

.document-section .document-info {
    display: flex;
    align-items: center;
}

.document-section .document-info i {
    color: var(--green);
    margin-right: 0.75rem;
    width: 20px;
}

.document-section .btn-download {
    background: var(--green);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.document-section .btn-download:hover {
    background: var(--dark-green);
    transform: translateY(-1px);
    color: #fff3cd;
}

.document-section .btn-download:disabled {
    background: var(--dark-green);
}

/* Search & Filter Section */
.search-filter-section {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
    margin-bottom: 2rem;
}

.search-filter-section form {
    position: relative;
}

.search-filter-section .search-input {
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    padding: 1rem 3rem 1rem 1.5rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: none;
}

.search-filter-section .search-input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 0.2rem rgba(139, 195, 74, 0.25);
}

.search-filter-section .search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--green), var(--green));
    border: none;
    border-radius: 50px;
    padding: 0 1rem;
    height: 45px;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-filter-section .search-btn:hover {
    box-shadow: 0 5px 15px rgba(139, 195, 74, 0.3);
}

.search-filter-section .filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.filter-tag {
    background: rgba(109, 76, 65, 0.1);
    color: var(--primary);
    border: 2px solid transparent;
    border-radius: 25px;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.filter-tag:hover, .filter-tag.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.filter-tag i {
    margin-right: 0.5rem;
}

/* UMKM Grid */
.umkm-grid {
    margin-top: 2rem;
}

/* Featured News */
.featured-news {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid var(--green);
    position: relative;
    margin-bottom: 2rem;
}

.featured-news .featured-content {
    display: flex;
    align-items: center;
    min-height: 300px;
}

.featured-news .featured-image {
    width: 350px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
}

.featured-news .featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-news .featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--green), var(--green));
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-news .featured-text {
    flex: 1;
    padding: 2rem;
}

.featured-news .featured-title {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-news .news-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: #666;
}

.featured-news .news-meta i {
    color: var(--green);
    margin-right: 0.3rem;
}

.featured-news .featured-excerpt {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.featured-news .read-more {
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

/* Index News Sidebar */
.index-news-sidebar-section {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.index-news-sidebar-section .sidebar-title {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--green);
    position: relative;
}

.index-news-sidebar-section .sidebar-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.index-news-sidebar-section .link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    text-decoration: none;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.index-news-sidebar-section .link:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.index-news-sidebar-section .link i {
    color: var(--primary);
}

.index-news-sidebar-section .link:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.index-news-sidebar-section .count {
    background: var(--green);
    color: #fff;
    border-radius: 15px;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
}

/* News Style */
.news-content {
    padding: 1rem 0;
}

.news-article {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    padding: 2rem;
}

.news-article .article-header {
    padding-bottom: 0.5rem;
}

.news-article .article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.news-article .meta-item {
    display: flex;
    align-items: center;
    color: var(--secondary);
}

.news-article .meta-item i {
    margin-right: 0.5rem;
    color: var(--green);
}

.news-article .article-title {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.news-article .article-image {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
}

.news-article .article-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 15px;
}

.news-article .article-content {
    padding: 2rem 0;
}

.news-article .article-content p {
    margin-bottom: 1.5rem !important;
    line-height: 1.8 !important;
    font-size: 1.1rem !important;
    text-align: justify !important;
}

.news-article .article-content h3 {
    color: var(--primary) !important;
    font-weight: 600 !important;
    margin: 2rem 0 1rem 0 !important;
}

.news-article .article-share {
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.news-article .article-share h6 {
    font-weight: 600;
    color: var(--primary);
}

.news-article .share-buttons {
    display: flex;
    gap: 1rem;
}

.news-article .share-btn {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.news-article .share-btn:hover {
    transform: translateY(-2px);
    color: #fff;
}

.news-article .share-btn i {
    margin-right: 0.5rem;
}

.news-article .share-facebook { background: #1877f2; }
.news-article .share-whatsapp { background: #25d366; }
.news-article .share-copy { background: var(--primary); }

.news-content .news-sidebar {
    padding: 0;
    position: sticky;
    top: 120px;
}

.news-content .news-sidebar-widget {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.news-content .widget-title {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--green);
    position: relative;
}

.news-content .widget-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
}

.news-content .latest-news-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.news-content .latest-news-item:hover {
    transform: translateY(-2px);
}

.news-content .latest-news-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.news-content .latest-news-thumb {
    width: 100px;
    height: 80px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.news-content .latest-news-thumb img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 10px;
}

.news-content .latest-news-content h6 {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.news-content .latest-news-text {
    color: var(--secondary);
    font-size: 0.8rem;
}

.news-content .popular-post {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.news-content .popular-post:hover {
    transform: translateX(5px);
}

.news-content .popular-post:last-child {
    margin-bottom: 0;
}

.news-content .popular-number {
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.news-content .popular-post h6 {
    color: var(--primary);
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.news-content .comments-section {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-top: 2rem;
    scroll-margin-top: 120px;
}

.news-content .comments-title {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.news-content .comments-title i {
    margin-right: 0.5rem;
    color: var(--green);
}

.news-content .comment-form {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.comment-form h5 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.comment-form .form-control {
    border-radius: 8px;
    border: 2px solid #eee;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.comment-form .form-control:focus {
    border-color: rgba(173, 122, 105, 0.466);
    box-shadow: 0 0 0 .25rem rgba(173, 122, 105, 0.267);
}

.comment-item[data-level] {
    --level: attr(data-level number);
}

.comment-item {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    margin-left: calc(var(--level, 0) * 20px);
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    margin-right: 1rem;
}

.comment-info h6 {
    color: var(--primary);
    font-weight: 600;
    margin: 0 0 0.2rem 0;
}

.comment-info h6 .admin-badge {
    background: var(--primary);
}

.comment-date {
    color: var(--secondary);
    font-size: 0.8rem;
}

.comment-content {
    margin-left: 66px;
    line-height: 1.6;
    color: #555;
}

.comment-action {
    margin: 0.5rem 0 0.5rem 66px;
}

.comment-action .btn {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.comment-action .btn.reply-btn {
    color: var(--green);
}

.comment-action .btn.delete-btn {
    color: var(--primary);
}

.comment-action .btn:hover {
    color: var(--primary);
}

.comments-list .comment-reply-item {
    margin-left: 1.45rem;
    border-left: 3px solid var(--green);
    padding-left: 1rem; 
}

.comment-item .comment-reply-container {
    padding-left: 66px;
}

/* UMKM Section */
.umkm-content {
    padding: 1rem 0;
}

.product-detail {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}   

.product-detail .main-image {
    width: 100%;
    height: 500px;
    padding: 2rem 2rem 0;
}

.product-detail .main-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    transition: opacity 0.1s ease-in-out;
    opacity: 1;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.product-detail .main-image img.fading {
    opacity: 0;
}

.product-detail .thumbnail-gallery {
    display: flex;
    gap: 10px;
    padding: 2rem;
    overflow-x: auto;
}

.product-detail .thumbnail {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border-radius: 8px;
}

.product-detail .thumbnail img {
    object-fit: cover;
    height: 100%;   
    width: 100%;
    border-radius: 8px;
}

.product-detail .thumbnail:hover, 
.product-detail .thumbnail.active {
    border-color: var(--green);
    transform: scale(1.05);
}

.product-detail .product-info {
    padding: 0 2rem 2rem;
}

.product-info .product-title {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-info .product-price {
    font-size: 1.6rem;
    color: var(--green);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.product-info .product-category {
    display: inline-block;
    background: rgba(139, 195, 74, 0.1);
    color: var(--green);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.product-info .product-description {
    line-height: 1.7;
    margin-bottom: 2rem;
}

.product-info .product-description h5 {
    color: var(--primary);
}

.product-detail .contact-section {
    background: linear-gradient(135deg, var(--primary), var(--primary));
    color: #fff;
    padding: 2rem;
    border-radius: 10px;
}

.umkm-sidebar {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 2rem;
    position: sticky;
    top: 120px;
}

.umkm-sidebar .sidebar-title {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--green);
    position: relative;
}

.umkm-sidebar .sidebar-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
}

.umkm-sidebar .related-product {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.umkm-sidebar .related-product:hover {
    transform: translateY(-2px);
}

.umkm-sidebar .related-product:last-child {
    margin-bottom: 0;
}

.umkm-sidebar .related-image {
    width: 100px;
    height: 80px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.umkm-sidebar .related-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 10px;
}

.umkm-sidebar .related-info h6 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.umkm-sidebar .related-price {
    margin-top: 0.5rem;
    color: var(--green);
    font-weight: 600;
}

.umkm-sidebar .related-category {
    color: #6c757d;
    font-size: 0.8rem;
}

/* Kritik Saran */
.feedback-form {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 2px solid rgba(109, 76, 65, 0.1);
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

.feedback-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--green) 50%, var(--primary) 100%);
}

.guidelines-section {
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1rem;
}

.guidelines-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.guideline-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(139, 195, 74, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--green);
}

.guideline-icon {
    color: var(--green);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

/* Web Footer */
.web-footer {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 100%);
    color: var(--light);
}

.web-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 50%, var(--secondary) 100%);
}

.web-footer .footer-content {
    position: relative;
    z-index: 2;
    padding: 3rem 0 2rem 0;
}

.web-footer .footer-section h5 {
    color: var(--light);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.web-footer .footer-section h5 i {
    color: var(--green);
}

.web-footer .footer-nav-link {
    color: var(--light);
    text-decoration: none;
    padding: 0.5rem 0;
    display: block;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 0;
}

.web-footer .footer-nav-link.active,
.web-footer .footer-nav-link:hover {
    color: var(--light);
    border-left-color: var(--green);
    padding-left: 15px;
}

.web-footer .footer-dropdown-toggle {
    cursor: pointer;
}

.web-footer .footer-dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0px;
    border-left: 0.3em solid transparent;
}

.web-footer .footer-dropdown-menu {
    padding-left: 1rem;
}

.web-footer .footer-dropdown-item {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 0.4rem 0;
    display: block;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 0.75rem;
    font-size: 1rem;
}

.web-footer .footer-dropdown-item:hover,
.web-footer .footer-dropdown-item.active {
    color: var(--light);
}

.web-footer .footer-dropdown-item i {
    width: 16px;
    color: var(--light);
    opacity: 0.8;
}

.web-footer .contact-item {
    color: var(--light);
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.web-footer .contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.web-footer .contact-icon {
    background: var(--secondary);
    color: var(--light);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

.web-footer .footer-bottom {
    background: var(--primary);
    padding: 1.5rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.web-footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
    border-radius: 50%;
    margin: 0 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.web-footer .social-links a:hover {
    transform: translateY(-3px);
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
    gap: 2rem;
}

.pagination-wrapper .pagination-custom {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.pagination-wrapper .page-link-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.pagination-wrapper .page-link-custom:hover, 
.pagination-wrapper .page-link-custom.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(109, 76, 65, 0.3);
}

.pagination-wrapper .page-nav {
    background: linear-gradient(135deg, var(--green), var(--green));
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.pagination-wrapper .page-nav:hover {
    color: #fff;
    box-shadow: 0 5px 15px rgba(139, 195, 74, 0.3);
}

.pagination-wrapper .page-nav.disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.pagination-wrapper .pagination-info {
    background: rgba(255, 255, 255, 0.8);
    padding: 1rem 2rem;
    border-radius: 25px;
    color: var(--primary);
    font-weight: 500;
    backdrop-filter: blur(10px);
}

/* Floating Statistics Panel */
.floating-stats {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 999;
}

.button-float {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--dark-primary));
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(109, 76, 65, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.button-float::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.button-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(109, 76, 65, 0.6);
}

.button-float:hover::before {
    width: 100%;
    height: 100%;
}

.button-float.active {
    background: linear-gradient(135deg, var(--green), var(--dark-green));
}

.floating-stats .stats-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 250px;
    background: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 1;
    visibility: hidden;
    border-radius: 0 0 20px 20px;
}

.floating-stats .stats-panel.active {
    transform: translateY(-80px);
    opacity: 1;
    visibility: visible;
}

.floating-stats .stats-header {
    background: linear-gradient(135deg, var(--primary), var(--dark-primary));
    color: #fff;
    padding: 1rem;
    text-align: center;
    position: relative;
    border-radius: 20px 20px 0 0;
}

.floating-stats .stats-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--light) 0%, var(--green) 50%, var(--light) 100%);
}

.floating-stats .stats-header h6 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.floating-stats .stats-content {
    padding: 1rem;
    max-height: 400px;
    overflow-y: auto;
    background: #fff;
    border-radius: 0 0 20px 20px;
}

.stats-section .stats-section:last-child {
    margin-bottom: 0;
}

.stats-section .stat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.stats-section .stat-item:last-child {
    border-bottom: none;
}

.stats-section .stat-item:hover {
    background: rgba(139, 195, 74, 0.05);
    transform: translateY(-3px);
}

.stats-section .stat-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.stats-section .stat-label i {
    width: 16px;
    color: var(--green);
}

.stats-section .stat-value {
    font-weight: 600;
    color: var(--primary);
}

/* Kritik dan Saran */
.kritik-saran-button {
    position: fixed;
    bottom: 6rem;
    left: 1.5rem;
    z-index: 999;
}

/* Scroll to Top */
.floating-scroll-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    display: none;
}

/* Custom Modal Styles */
.modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.modal-content .modal-body {
    padding: 2rem;
    text-align: center;
}

.modal-content .modal-footer {
    border-top: none;
    padding: 0 2rem 2rem 2rem;
    justify-content: center;
    gap: 1rem;
}

.modal-content .modal-message {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    word-wrap: break-word;
}

.modal-content .btn-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.modal-content .btn-close:hover {
    opacity: 1;
}

.modal-success .modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4caf50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 2.5rem;
    color: #fff;
    animation: bounceIn 0.6s ease;
}

.modal-success .modal-title {
    color: #4caf50;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.modal-success .btn-success-custom {
    background: linear-gradient(135deg, #4caf50, #45a049);
    border: none;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-success .btn-success-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.4);
    color: #fff;
}

.modal-error .modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f44336, #d32f2f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 2.5rem;
    color: #fff;
    animation: shakeX 0.6s ease;
}

.modal-error .modal-title {
    color: #f44336;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.modal-error .btn-error-custom {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    border: none;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-error-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(244, 67, 54, 0.4);
    color: #fff;
}

.modal-warning .modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff9800, #f57c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 2.5rem;
    color: #fff;
    animation: pulse 1s ease infinite;
}

.modal-warning .modal-title {
    color: #ff9800;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.modal-warning .btn-warning-custom {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    border: none;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-warning .btn-warning-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 152, 0, 0.4);
    color: #fff;
}

.btn-secondary-custom {
    background: #6c757d;
    border: none;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary-custom:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(108, 117, 125, 0.4);
    color: #fff;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes shakeX {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(10px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Style */
@media (max-width: 991.98px) {
    .web-navbar {
        padding-left: 0px;
        padding-right: 0px; 
    }

    .web-navbar a.nav-link {
        color: var(--light);
    }
    
    .web-navbar .dropdown-menu {
        backdrop-filter: blur(10px);
    }

    .web-navbar .dropdown-menu::before {
        display: none;
    }

    .web-navbar .nav-item:has(.active)::after {
        width: 0%;
    }

    .beranda-carousel .carousel-control-next,
    .beranda-carousel .carousel-control-prev {
        width: 15%;
    }

    .featured-content {
        flex-direction: column;
    }

    .featured-content .featured-image {
        height: 250px;
        width: 100%;
    }
}

@media (max-width: 767.98px) { 
    .web-navbar .web-navbar-offcanvas {
        width: 80%;
    }

    .beranda-carousel .carousel-caption {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .beranda-carousel .carousel-caption .text h1 {
        font-size: 1.5rem;
        padding: 0 1rem;
    }

    .beranda-carousel .carousel-item .placeholder,
    .beranda-carousel .carousel-item img {
        height: 300px;
    }

    .beranda-carousel .carousel-caption .text {
        width: 100%;
    }

    .section {
        padding: 3rem 0;
    }

    .welcome-content {
        flex-direction: column;
        text-align: center;
    }

    .overview-card,
    .vision-card,
    .mission-card,
    .org-chart-container,
    .location-info {
        padding: 1.5rem 1rem;
    }

    .org-chart-placeholder {
        min-height: auto;
    }

    .chart-container {
        height: 300px;
    }
            
    .stat-number {
        font-size: 2rem;
    }
            
    .summary-number {
        font-size: 2.5rem;
    }

    .chart-card,
    .detail-table {
        padding: 1.5rem 1rem;
    }

    .service-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .service-tabs .service-tab {
        max-width: none;
        width: 100%;
        margin-bottom: 0.3rem;
    }
    
    .service-form {
        padding: 2rem 1.5rem;
    }

    .form-section-divider {
        margin: 1.5rem -1.5rem !important;
    }

    .schedule-card {
        padding: 1.5rem 1rem;
    }

    .search-filter-section {
        padding: 1rem;
    }

    .filter-tags {
        justify-content: start;
    }

    .pagination-wrapper {
        flex-direction: column;
        gap: 1rem;
    }

    .pagination-custom {
        flex-wrap: wrap;
        justify-content: center;
    }

    .search-section {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .status-info {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    .status-content {
        padding: 1.5rem;
    }
    
    .timeline-item {
        padding-left: 3rem !important;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }

    .news-article .article-title {
        font-size: 1.5rem;
    }

    .news-article .article-image {
        height: 250px;
    }
    
    .news-article .article-meta {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .news-article .share-buttons {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .news-article,
    .news-content .comments-section,
    .news-content .news-sidebar-widget {
        padding: 1rem;
    }
    
    .comments-list .comment-content,
    .comments-list .comment-reply,
    .comment-action {
        margin-left: 0;
    }

    .comment-item {
        margin-left: calc(var(--level, 0) * 10px);
    }
    
    .news-sidebar {
        margin-top: 2rem;
    }

    .umkm-content {
        padding: 1rem 0 0;
    }

    .product-detail {
        margin-bottom: 0;
    }

    .product-detail .main-image {
        padding: 1rem 1rem 0;
        height: 250px;
    }

    .product-detail .thumbnail-gallery {
        padding: 1rem;
    }
    
    .product-detail .product-info {
        padding: 0 1rem 1rem;
    }

    .product-info .product-title {
        font-size: 1.5rem;
    }

    .product-info .product-price {
        font-size: 1.3rem;
    }

    .product-detail .contact-section {
        padding: 1.5rem;
    }
    
    .umkm-sidebar {
        position: static;
        margin: 2rem 0 1rem;
        padding: 1rem;
    }

    .kritik-saran-button {
        display: none;
    }

    .feedback-form {
        padding: 2rem 1.5rem;
    }
}