@import url("https://fonts.googleapis.com/css2?family=BBH+Sans+Hegarty&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");

.lato-black {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: normal;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: "Work Sans", sans-serif;
    font-size: 1rem;
}

@media (max-width: 700px) {
    body {
        font-size: 1rem;
    }
}

 {
     {
        /* =====================
    Navbar 
    ===================== */
    }
}

.navbar-glass {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.3) 0%, rgba(6, 182, 212, 0.25) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    margin: 12px auto;
    padding: 0.8rem 1.5rem;
    width: 96%;
    max-width: 1400px;
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.2), 
                0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-glass.scrolled {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.4) 0%, rgba(6, 182, 212, 0.35) 100%);
    backdrop-filter: blur(24px);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.3), 
                0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.navbar-brand:hover {
    color: #fff;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 10px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Efek shimmer sama seperti nav-link */
.logo-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.navbar-brand:hover .logo-wrapper::before {
    left: 100%;
}

.navbar-brand:hover .logo-wrapper {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.logo-wrapper img {
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.navbar-glass .nav-link {
    color: #fff;
    font-weight: 600;
    font-size: 14.5px;
    font-family: "Lato", sans-serif;
    margin: 0 4px;
    border-radius: 12px;
    padding: 10px 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.navbar-glass .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.navbar-glass .nav-link:hover::before {
    left: 100%;
}

.navbar-glass .nav-link:hover,
.navbar-glass .nav-link.active {
    background: rgba(255, 255, 255, 0.35);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.navbar-glass .nav-link.active {
    background: rgba(255, 255, 255, 0.4);
    font-weight: 700;
}

.hamburger {
    width: 48px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.hamburger .bar {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 5px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hamburger.active .top {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active .middle {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active .bottom {
    transform: rotate(-45deg) translate(8px, -8px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.3);
    color: #0ea5e9;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: #0ea5e9;
    color: #fff;
}

@media (max-width: 400px) {
    .navbar-glass {
        width: 100%;
        border-radius: 0;
        margin: 0;
    }

    .hamburger {
        width: 42px;
        height: 36px;
        gap: 5px;
    }

    .navbar-brand img {
        height: 50px !important;
        width: auto !important;
    }

    .navbar-brand span {
        font-size: 20px;
    }

    .navbar-glass .nav-link {
        text-align: center;
        display: block;
        margin: 6px 0;
    }

    .navbar-glass .btn-glass {
        display: block;
        margin: 10px auto;
        text-align: center;
    }

    .navbar-glass .dropdown-menu {
        width: 90%;
        margin: 0 auto;
        border-radius: 16px;
        box-shadow: 4px 4px 20px rgba(14, 165, 233, 0.3);
    }
}


 {
     {
        /* =====================
    Footer 
    ===================== */
    }
}

html,
body {
    height: 100%;
}

.footer-sticky {
    margin-top: auto;
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
    border-top: 3px solid #bae6fd;
    box-shadow: 0 -4px 20px rgba(14, 165, 233, 0.1);
}

.footer-main {
    padding: 3rem 0 2rem;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.15);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.footer-logo-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.25);
}

.footer-logo-wrapper img {
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.footer-brand-text {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #0284c7;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-social-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #0284c7;
    margin-bottom: 0.5rem;
    font-family: "Lato", sans-serif;
}

.footer-social {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.footer-social-link i,
.footer-social-link svg {
    color: #fff;
    font-size: 24px;
}

.footer-social-link .icon-x {
    width: 24px;
    height: 24px;
}

.footer-social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.5);
    background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-info-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #0284c7;
    margin-bottom: 0.5rem;
    font-family: "Lato", sans-serif;
}

.footer-info-text {
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-link {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.footer-link:hover {
    color: #0284c7;
    border-bottom: 2px solid #0284c7;
}

.footer-visitors {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #0ea5e9;
}

.visitor-item {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    color: #374151;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}

.visitor-item:last-child {
    border-bottom: none;
}

.visitor-count {
    font-weight: 700;
    color: #0ea5e9;
}

/* COPYRIGHT SECTION - IMPROVED */
.footer-bottom {
    background: none; /* <-- Diubah dari gradient menjadi 'none' */
    padding: 1.5rem 0;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    /* Anda mungkin ingin menambahkan border-top untuk pemisah visual */
    border-top: 1px solid #dee2e6; 
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.footer-bottom small {
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    font-family: "Lato", sans-serif;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.footer-bottom small::after {
    content: '✦';
    margin: 0 8px;
    color: #bae6fd;
    font-size: 0.7rem;
    vertical-align: middle;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .navbar-glass .nav-link {
        text-align: center;
        margin: 8px 0;
    }
}

@media (max-width: 768px) {
    .navbar-glass {
        width: 100%;
        border-radius: 0;
        margin: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .visitor-item {
        justify-content: center;
        gap: 1rem;
    }

    .footer-bottom small {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer-bottom small {
        font-size: 0.85rem;
        letter-spacing: 0.3px;
    }
}

        /* Responsive */
        @media (max-width: 992px) {
            .navbar-glass .nav-link {
                text-align: center;
                margin: 8px 0;
            }
        }

        @media (max-width: 768px) {
            .navbar-glass {
                width: 100%;
                border-radius: 0;
                margin: 0;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .footer-left,
            .footer-right {
                align-items: center;
            }

            .footer-social {
                justify-content: center;
            }

            .visitor-item {
                justify-content: center;
                gap: 1rem;
            }
        }

.hero-title {
    padding-top: 200px;
    color: #ffffff;
}
.hero-text {
    font-size: 64px !important;
    font-weight: 700 !important;
}

 {
     {
        /* =====================
    Landing Page
    ===================== */
    }
}

body,
.bg-main {
    background: #e0f7fa !important;
}

.section-main {
    background: #e0f7fa;
}

.section-white {
    background-color: #ffffff;
}

.hero-banner {
    background: linear-gradient(
            rgba(55, 86, 107, 0.23),
            rgba(55, 86, 107, 0.23)
        ),
        url("../image/bg-sungai.jpg") center/cover no-repeat;
    color: #fff;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 250px;
    padding-bottom: 100px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.hero-banner h1 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800 !important;
    font-style: normal;
    font-size: 3rem;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.hero-banner p {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400 !important;
    font-style: bold;
    font-size: 1.3rem;
    color: #ffffffff;
    letter-spacing: 0.3px;
    margin-top: -14px;
}

.hero-banner .container {
    transform: translateY(-70px);
}

.section-card {
    background: #e0f7fa;
    border: none;
    box-shadow: 0 2px 12px rgba(14, 165, 233, 0.1);
}

.pantun-card {
    background: #ffffff;
    border: none;
    box-shadow: 0 4px 16px rgba(2, 136, 209, 0.2);
    border-radius: 16px;
    padding: 1rem;
    max-width: 700px;
    margin: -40px auto 40px auto;
    position: relative;
    z-index: 5;
}

.pantun-card p {
    font-family: "Lora", serif;
    font-style: italic;
    font-size: 20px;
    color: #333;
    line-height: 1;
}

.btn-main {
    background: #039be5;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding-left: 2rem;
    padding-right: 2rem;
}

.btn-main:hover,
.btn-main:focus {
    background: #0288d1;
    color: #fff;
}

#edukasi h2 {
    font-weight: 500 !important;
    font-size: 23px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000000ff;
    font-family: "Segoe UI", Arial, sans-serif;
}
#grafik h2 {
    font-weight: 500 !important;
    font-size: 23px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000000ff;
    font-family: "Segoe UI", Arial, sans-serif;
}
#highlight h2 {
    font-weight: 500 !important;
    font-size: 23px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000000ff;
    font-family: "Segoe UI", Arial, sans-serif;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #0288d1;
    border-radius: 50%;
    background-size: 50% 50%;
    width: 3rem;
    height: 3rem;
}

.chart-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: #e0f7fa;
    border-radius: 12px;
    padding: 1rem;
}

.chart-container canvas {
    width: 100% !important;
    height: auto !important;
}

.video-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 1rem;
    background-color: #ffffff;
}

.video-card video {
    pointer-events: auto;
    z-index: 2;
}

.video-card:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.video-card .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffffff;
    font-size: 64px;
    opacity: 0.85;
    pointer-events: none;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.video-card .play-button {
    animation: pulsePlay 1.8s infinite ease-in-out;
    transition: transform 0.3s ease;
}

.video-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

.video-card img {
    transition: opacity 0.3s ease;
}

.video-card:hover img {
    opacity: 0.8;
}

@media (max-width: 400px) {
    body {
        font-size: 0.7rem;
    }

    .hero-banner {
        padding-top: 200px !important;
        padding-bottom: 40px !important;
        background-size: cover;
    }

    .hero-banner h1 {
        font-size: 1.6rem !important;
    }

    .hero-banner p {
        font-size: 0.75rem !important;
    }

    .pantun-card {
        width: 95%;
        padding: 0.6rem;
        margin-bottom: 1.5rem;
    }

    .pantun-card p {
        font-size: 0.7rem !important;
        line-height: 1.3;
    }

    #edukasi h2,
    #grafik h2,
    #highlight h2 {
        font-size: 0.85rem !important;
        text-transform: none;
    }

    .section-card .fw-semibold {
        font-size: 0.65rem !important;
    }

    ul li {
        font-size: 0.7rem;
    }
    .carousel-control-prev,
    .carousel-control-next {
        display: none !important;
    }
}
@media (max-width: 700px) {
    body {
        font-size: 0.7rem;
    }

    .hero-banner {
        padding-top: 200px !important;
        padding-bottom: 40px !important;
        background-size: cover;
    }

    .hero-banner h1 {
        font-size: 1.6rem !important;
    }

    .hero-banner p {
        font-size: 0.75rem !important;
    }

    .pantun-card {
        width: 95%;
        padding: 0.6rem;
        margin-bottom: 1.5rem;
    }

    .pantun-card p {
        font-size: 0.7rem !important;
        line-height: 1.3;
    }

    #edukasi h2,
    #grafik h2,
    #highlight h2 {
        font-size: 0.85rem !important;
        text-transform: none;
    }

    .section-card .fw-semibold {
        font-size: 0.65rem !important;
    }

    ul li {
        font-size: 0.7rem;
    }
    .carousel-control-prev,
    .carousel-control-next {
        display: none !important;
    }
}

 {
     {
        /* =====================
    Kontak Page
    ===================== */
    }
}

body,
.bg-main {
    background: #e0f7fa !important;
}

.hero-kontak {
    background: #96d8eeff;
    color: #fff;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 40px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700 !important;
}

.hero-kontak h1 {
    font-size: 27px !important;
}

.contact-section {
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    padding: 2.5rem;
    position: relative;
    z-index: 1;
    margin-top: 0 !important;
}

.contact-section h5 {
    font-weight: 500 !important;
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* Map */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    height: 350px;
}

.saran-card {
    background: #ffffff;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-family: "Segoe UI", sans-serif;
}

.saran-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.saran-card h6 {
    color: #0288d1;
    font-size: 1rem;
}

.saran-card p.text-secondary {
    font-size: 0.95rem;
    line-height: 1.4;
}

.scroll-area {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 5px;
}

.scroll-area::-webkit-scrollbar {
    width: 6px;
}

.scroll-area::-webkit-scrollbar-thumb {
    background-color: rgba(2, 136, 209, 0.4);
    border-radius: 3px;
}

.scroll-area::-webkit-scrollbar-thumb:hover {
    background-color: rgba(2, 136, 209, 0.7);
}

form {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

@media (max-width: 576px) {
    .saran-card {
        padding: 1rem;
    }

    .saran-card h6 {
        font-size: 0.95rem;
    }

    .saran-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .hero-kontak {
        padding-top: 150px;
        padding-bottom: 80px;
        min-height: 300px;
    }

    .hero-kontak h1 {
        font-size: 22px !important;
    }

    .contact-section h5 {
        font-size: 17px;
        text-align: center;
    }
}

 {
     {
        /* =====================
        Edukasi Page
        ===================== */
    }
}

.edukasi-section {
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    padding: 2.5rem;
    position: relative;
    z-index: 1;
    margin-top: 0 !important;
}

.hero-edukasi {
    background: #96d8eeff;
    color: #fff;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 40px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700 !important;
}

.hero-edukasi h1 {
    font-size: 27px !important;
}

.artikel-gambar {
    width: 70%;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.artikel-gambar:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 576px) {
    .edukasi-section {
        padding: 1rem 0.8rem !important;
    }

    .edukasi-section .row {
        justify-content: center;
        gap: 0.9rem !important;
    }

    .edukasi-section .col-md-6.col-lg-4 {
        flex: 0 0 48% !important;
        max-width: 48% !important;
        display: flex;
        justify-content: center;
        padding: 0 !important;
    }

    .artikel-gambar {
        width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .artikel-gambar:hover {
        transform: scale(1.03);
        box-shadow: 0 5px 12px rgba(0, 0, 0, 0.12);
    }
}

@media (max-width: 400px) {
    .hero-edukasi {
        padding-top: 140px;
        padding-bottom: 60px;
        min-height: 280px;
    }

    .hero-edukasi h1 {
        font-size: 20px !important;
    }

    .edukasi-section .row {
        gap: 0.8rem;
    }

    .edukasi-section .col-md-6.col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
    }

    .artikel-gambar {
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    }
}

 {
     {
        /* =====================
    Uji Pengatahuan Page
    ===================== */
    }
}

body,
.bg-main {
    background: #e0f7fa !important;
}

.hero-kuiz {
    background: #96d8eeff;
    color: #fff;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 40px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700 !important;
}

.hero-kuiz h1 {
    font-size: 27px !important;
}

.quiz-section {
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    padding: 2.5rem;
    position: relative;
    z-index: 1;
    margin-top: 0 !important;
}

.quiz-section h5 {
    font-weight: 500 !important;
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
    font-family: "Segoe UI", Arial, sans-serif;
}

.quiz-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.quiz-img-btn {
    display: block;
    flex: 1 1 240px;
    max-width: 260px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    transition: all 0.35s ease;
    cursor: pointer;
}

.quiz-btn-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    transition: all 0.3s ease;
    object-fit: cover;
}

.quiz-img-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.25),
        rgba(255, 255, 255, 0.05)
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 18px;
}

.quiz-img-btn:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.quiz-img-btn:hover::before {
    opacity: 1;
}

.quiz-img-btn:hover .quiz-btn-img {
    filter: brightness(1.15);
}

.quiz-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 10px 0;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.quiz-label {
    background: rgba(77, 182, 172, 0.75);
}

@media (max-width: 400px) {
    .hero-kuiz {
        padding-top: 150px;
        padding-bottom: 80px;
        min-height: 300px;
    }

    .hero-kuiz h1 {
        font-size: 22px !important;
    }

    .quiz-section h5 {
        font-size: 17px;
    }

    .quiz-buttons {
        gap: 12px;
    }

    .quiz-img-btn {
        max-width: 80%;
        border-radius: 14px;
    }

    .quiz-btn-img {
        border-radius: 14px;
    }
}

 {
     {
        /* =====================
    Lomba Pilah Sampah Page
    ===================== */
    }
}

body,
.bg-main {
    background: #e0f7fa !important;
}

.hero-sampah {
    background: #96d8eeff;
    color: #fff;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 40px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700 !important;
}

.hero-sampah h1 {
    font-size: 27px !important;
}

.sampah-section {
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    padding: 2.5rem;
    position: relative;
    z-index: 1;
    margin-top: 0 !important;
}

.sampah-section h5 {
    font-weight: 500 !important;
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
    font-family: "Segoe UI", Arial, sans-serif;
}

.sampah-section h4 {
    font-size: 17px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
}

.kelurahan-card {
    transition: all 0.3s ease;
    border-left: 4px solid #4db6ac;
}

.kelurahan-card:hover {
    transform: translateY(-3px);
    background-color: #e0f2f1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.quiz-card-text {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 10px;
    background-color: #4db6ac;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.quiz-card-text:hover {
    background-color: #00796b;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.quiz-card-text {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 14px;
    background-color: #4db6ac;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.quiz-card-text:hover {
    background-color: #00796b;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 400px) {
    .hero-sampah {
        padding-top: 150px;
        padding-bottom: 80px;
        min-height: 300px;
    }

    .hero-sampah h1 {
        font-size: 22px !important;
    }

    .sampah-section h5 {
        font-size: 17px;
    }
    .sampah-section h4 {
        font-size: 16px;
    }
}

 {
     {
        /* =====================
    Pemantauan Otomatis Page
    ===================== */
    }
}

body,
.bg-main {
    background: #e0f7fa !important;
}

.hero-otomatis {
    background: #96d8eeff;
    color: #fff;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 40px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700 !important;
}

.hero-otomatis h1 {
    font-size: 27px !important;
}

.otomatis-section {
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    padding: 2.5rem;
    position: relative;
    z-index: auto;
    margin-top: 0 !important;
}

.otomatis-section h5 {
    font-weight: 500 !important;
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
    font-family: "Segoe UI", Arial, sans-serif;
}
.onlimo-images {
    margin-top: 40px;
}

.onlimo-images h6 {
    font-family: "Segoe UI", Arial, sans-serif;
    letter-spacing: 0.5px;
    color: #000;
}

.onlimo-images img {
    width: 100%;
    height: auto;
    border: 4px solid #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.onlimo-images img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 400px) {
    .hero-otomatis {
        padding-top: 150px;
        padding-bottom: 80px;
        min-height: 300px;
    }

    .hero-otomatis h1 {
        font-size: 22px !important;
    }

    .otomatis-section h5 {
        font-size: 17px;
    }

    .onlimo-images .col-lg-6 {
        margin-bottom: 20px;
    }

    .onlimo-images img {
        border-width: 2px;
    }
}

 {
     {
        /* =====================
    Pemantauan Manual Page
    ===================== */
    }
}

body,
.bg-main {
    background: #e0f7fa !important;
}

.hero-manual {
    background: #96d8eeff;
    color: #fff;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 40px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700 !important;
    font-size: 27px !important;
}

.hero-manual h1 {
    font-size: 27px !important;
}

.manual-section {
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    padding: 2.5rem;
    position: relative;
    z-index: auto;
    margin-top: 0 !important;
}

.manual-section h5 {
    font-weight: 500 !important;
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
    font-family: "Segoe UI", Arial, sans-serif;
}

.list-group-item {
    flex-wrap: wrap;
    gap: 8px;
    text-align: justify;
    text-justify: inter-word;
}

.list-group-item .btn {
    margin-top: 4px;
    margin-bottom: 4px;
}

@media (max-width: 400px) {
    .hero-manual {
        padding-top: 150px;
        padding-bottom: 80px;
        min-height: 300px;
    }

    .hero-manual h1 {
        font-size: 22px !important;
    }

    .manual-section h5 {
        font-size: 17px;
    }

    .list-group-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .list-group-item span {
        width: 100%;
        font-weight: 600;
        font-size: 15px;
    }

    .list-group-item .btn {
        width: 100%;
        text-align: left;
        font-size: 13px;
        border-radius: 10px;
        white-space: normal;
        line-height: 1.3;
        padding: 6px 10px !important;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .list-group-item .btn i {
        font-size: 14px;
        flex-shrink: 0;
    }
}
