    :root{
      --primary:#2d6a4f;
      --secondary:#40916c;
      --light:#f4fff7;
      --dark:#1b4332;
      --gold:#ffd166;
    }

    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
      font-family:'Plus Jakarta Sans',sans-serif;
    }

    body{
      background:#f8faf8;
      overflow-x:hidden;
    }

    a{
      text-decoration:none;
    }

    /* ================= NAVBAR ================= */

    .navbar-custom{
      position:fixed;
      top:0;
      width:100%;
      z-index:999;
      background:rgba(20,40,20,0.78);
      backdrop-filter:blur(10px);
      padding:12px 0;
      transition:0.3s;
    }

    /* Hover Dropdown Desktop */
    @media (min-width: 992px) {
      .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }
      .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
      }
    }

    .navbar-brand{
      color:#fff !important;
      font-weight:800;
      font-size:1.3rem;
      display:flex;
      align-items:center;
      gap:10px;
    }

    .navbar-brand img{
      width:42px;
      height:42px;
      object-fit:contain;
    }

    .navbar-nav .nav-link{
      color:#fff !important;
      font-weight:600;
      margin:0 6px;
      position:relative;
    }

    .navbar-nav .nav-link::after{
      content:'';
      position:absolute;
      left:0;
      bottom:-4px;
      width:0%;
      height:2px;
      background:#fff;
      transition:0.3s;
    }

    .navbar-nav .nav-link:hover::after{
      width:100%;
    }

    .dropdown-menu{
      border:none;
      border-radius:15px;
      box-shadow:0 10px 30px rgba(0,0,0,0.1);
    }

    /* ================= HERO ================= */

    .hero{
      position:relative;
      height:100vh;
      overflow:hidden;
    }

    .carousel-item img{
      height:100vh;
      width:100%;
      object-fit:cover;
      filter:brightness(0.55);
    }

    .hero-overlay{
      position:absolute;
      inset:0;
      background:linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.2));
      z-index:2;
    }

    .hero-content{
      position:absolute;
      top:50%;
      left:50%;
      transform:translate(-50%,-50%);
      z-index:5;
      width:90%;
      text-align:center;
      color:white;
    }

    .hero-sub{
      font-size:1rem;
      letter-spacing:2px;
      text-transform:uppercase;
      margin-bottom:10px;
      color:#ffd166;
    }

    .typing-text{
      font-size:4rem;
      font-weight:800;
      line-height:1.2;
      min-height:120px;
    }

    .hero-desc{
      margin-top:15px;
      font-size:1.1rem;
      max-width:800px;
      margin-inline:auto;
      color:#eee;
    }

    /* ================= MENU HERO ================= */

    .hero-menu{
      margin-top:50px;
    }

    .menu-card{
      background:rgba(255,255,255,0.15);
      backdrop-filter:blur(10px);
      border:1px solid rgba(255,255,255,0.2);
      border-radius:20px;
      padding:20px 10px;
      color:white;
      transition:0.3s;
      height:100%;
      cursor:pointer;
    }

    .menu-card:hover{
      transform:translateY(-6px);
      background:rgba(255,255,255,0.25);
    }

    .menu-card i{
      font-size:2rem;
      margin-bottom:12px;
      color:#ffd166;
    }

    .menu-card h6{
      margin:0;
      font-weight:700;
      font-size:0.95rem;
    }

    /* ================= SECTION ================= */

    .section{
      padding:90px 0;
    }

    .section-title{
      text-align:center;
      margin-bottom:50px;
    }

    .section-title h2{
      font-weight:800;
      color:var(--dark);
      font-size:2.4rem;
    }

    .section-title p{
      color:#666;
      margin-top:10px;
    }

    /* ================= INFOGRAPHIC ================= */

    .info-box{
      background:white;
      border-radius:24px;
      padding:35px;
      text-align:center;
      box-shadow:0 15px 35px rgba(0,0,0,0.05);
      transition:0.3s;
      border-bottom:5px solid var(--secondary);
    }

    .info-box:hover{
      transform:translateY(-8px);
    }

    .info-box i{
      font-size:2.5rem;
      color:var(--primary);
      margin-bottom:15px;
    }

    .info-box h3{
      font-size:2.2rem;
      font-weight:800;
      color:var(--dark);
    }

    /* ================= LAYANAN ================= */

    .service-card{
      background:white;
      border-radius:25px;
      padding:30px;
      box-shadow:0 10px 30px rgba(0,0,0,0.06);
      height:100%;
      transition:0.3s;
      position:relative;
      overflow:hidden;
    }

    .service-card:hover{
      transform:translateY(-8px);
    }

    .service-card i{
      width:70px;
      height:70px;
      background:var(--light);
      color:var(--primary);
      display:flex;
      align-items:center;
      justify-content:center;
      border-radius:50%;
      font-size:1.8rem;
      margin-bottom:20px;
    }

    /* Centering titles and icons for specific sections as requested */
    #layanan .service-card i {
      margin-inline: auto;
    }
    #layanan .service-card h4 {
      text-align: center;
    }

    .btn-desa{
      background:var(--primary);
      color:white;
      border:none;
      padding:12px 25px;
      border-radius:50px;
      font-weight:700;
      transition:0.3s;
    }

    .btn-desa:hover{
      background:var(--dark);
      color:white;
    }

    /* ================= MAP ================= */

    .map-container{
      border-radius:25px;
      overflow:hidden;
      box-shadow:0 15px 35px rgba(0,0,0,0.08);
    }

    iframe{
      width:100%;
      height:450px;
      border:none;
    }

    /* ================= FOOTER ================= */

    footer{
      background:var(--dark);
      color:white;
      padding:50px 0 20px;
    }

    footer h5{
      font-weight:700;
      margin-bottom:20px;
    }

    footer ul{
      list-style:none;
      padding:0;
    }

    footer ul li{
      margin-bottom:10px;
    }

    footer ul li a{
      color:#ddd;
    }

    .copyright{
      margin-top:40px;
      text-align:center;
      color:#aaa;
      border-top:1px solid rgba(255,255,255,0.1);
      padding-top:20px;
    }

    /* Mobile Header Styling */
    .mobile-header {
      background: white;
      padding: 12px 0;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .result-box {
      display: none;
      margin-top: 15px;
      background: #eef3ea;
      border-radius: 12px;
      padding: 15px;
      border: 1px solid #dce7d8;
      color: #1b4332;
      font-size: 0.9rem;
    }

    .menu-card .custom-icon-img {
      width: 70px;
      height: 70px;
      object-fit: contain; /* Memastikan gambar skala dengan benar */
      margin-bottom: 12px;
    }
    /* ================= STRUKTUR ================= */
    .org-chart {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 20px 0;
    }
    .org-row {
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
      width: 100%;
    }
    .org-box {
      background: white;
      border: 2px solid var(--primary);
      border-radius: 15px;
      min-width: 220px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      margin-bottom: 15px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding-top: 20px;
    }
    .org-box img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 10px;
      border: 3px solid var(--primary);
      transition: 0.3s;
    }
    .org-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }
    .org-box .jabatan {
      background: var(--light);
      color: var(--primary);
      font-weight: 800;
      padding: 10px;
      border-bottom: 1px solid #eef;
      font-size: 0.8rem;
      text-transform: uppercase;
    }
    .org-box .nama {
      padding: 12px;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--dark);
    }
    .org-connector {
      width: 2px;
      height: 30px;
      background: var(--primary);
      margin-bottom: 15px;
    }

    /* ================= MOBILE NAV ================= */

    .mobile-bottom-nav{
      position:fixed;
      bottom:0;
      left:0;
      width:100%;
      background:white;
      z-index:9999;
      display:none;
      justify-content:space-around;
      padding:10px 5px;
      box-shadow:0 -5px 25px rgba(0,0,0,0.12);
      border-radius:20px 20px 0 0;
    }

    .mobile-bottom-nav a{
      color:#444;
      font-size:0.75rem;
      text-align:center;
      font-weight:600;
      flex:1;
    }

    .mobile-bottom-nav i{
      display:block;
      font-size:1.1rem;
      margin-bottom:5px;
      color:var(--primary);
    }

    /* Floating Menu */

    .floating-menu{
      position:fixed;
      bottom:70px;
      left:50%;
      transform:translateX(-50%);
      width:70%;
      background:white;
      border-radius:25px;
      padding:15px;
      z-index:9998;
      display:none;
      box-shadow:0 20px 50px rgba(0,0,0,0.18);
      animation:slideUp .3s ease;
      max-height: 65vh;
      overflow-y: auto;
      overflow-x: hidden;
    }

    @keyframes slideUp{
      from{
        transform:translate(-50%,50px);
        opacity:0;
      }
      to{
        transform:translate(-50%,0);
        opacity:1;
      }
    }

    .floating-menu a, .floating-menu .dropdown-toggle{
      display:block;
      padding:8px 12px;
      border-radius:10px;
      color:#333;
      font-weight:600;
      font-size: 0.85rem;
      transition:0.2s;
    }

    .floating-menu a:hover, .floating-menu .dropdown-toggle:hover{
      background:#f2f2f2;
    }

    .floating-menu .dropdown-menu {
      position: static !important;
      float: none;
      width: 100%;
      box-shadow: none;
      border: none;
      background: #f8fcf9;
      transform: none !important;
      padding: 0;
      margin: 5px 0;
    }

    .floating-menu .dropdown-item{
      font-size: 0.8rem;
      padding: 6px 15px;
    }

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

    @media(max-width:991px){

      .typing-text{
        font-size:2.3rem;
        min-height:80px;
      }

      .hero-desc{
        font-size:0.95rem;
      }

      .menu-card{
        padding:15px 5px;
      }

      .menu-card i{
        font-size:1.5rem;
      }

      .menu-card h6{
        font-size:0.75rem;
      }

      .desktop-navbar{
        display:none;
      }

      .mobile-bottom-nav{
        display:flex;
      }

      body{
        padding-bottom:90px;
      }
    }

    @media(max-width:576px){

      .typing-text{
        font-size:1.7rem;
      }

      .hero-sub{
        font-size:0.8rem;
      }

      .hero-menu{
        margin-top:30px;
      }

      .menu-card{
        border-radius:16px;
      }
    }

    /* WhatsApp Floating Button */
    .floating-wa {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background-color: #25d366;
      color: white;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      box-shadow: 2px 5px 15px rgba(0,0,0,0.2);
      z-index: 1000;
      transition: 0.3s ease;
    }
    .floating-wa:hover {
      background-color: #128c7e;
      color: white;
      transform: scale(1.1);
    }
    @media (max-width: 991px) {
      .floating-wa {
        bottom: 110px; /* Di atas mobile bottom nav */
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
      }
    }