* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      scroll-behavior: smooth;
    }

    body {
      background: #f8f6f1;
      color: #1e1e1e;
      line-height: 1.7;
    }

    header {
      background: rgba(15, 81, 50, 0.95);
      backdrop-filter: blur(8px);
      color: white;
      padding: 18px 8%;
      position: sticky;
      top: 0;
      z-index: 999;
      box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    }

    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }
    

    nav h1 {
      font-size: 28px;
      font-weight: 700;
      letter-spacing: 0.5px;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 22px;
      flex-wrap: wrap;
    }
    .nav-left {
    display: flex;
    align-items: center;
   gap: 12px;
}

    .logo-img {
  height: 60px;
  width: auto;
}
     .logo-img {
     height: 80px; /* bebas lu mau 70 / 90 juga oke */
   width: auto;
}


    nav ul li a {
      text-decoration: none;
      color: white;
      font-weight: 600;
      transition: 0.3s;
    }

    nav ul li a:hover {
      color: #d9f7e9;
    }

    .hero {
      min-height: 95vh;
      background: linear-gradient(rgba(15,81,50,0.72), rgba(15,81,50,0.72)), url('./images/produk1.jpeg') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 60px 8%;
      color: white;
    }

    .hero-content {
      max-width: 900px;
    }

    .hero-tag {
      display: inline-block;
      background: rgba(255,255,255,0.15);
      padding: 10px 18px;
      border-radius: 999px;
      font-size: 14px;
      margin-bottom: 22px;
      border: 1px solid rgba(255,255,255,0.2);
    }

    .hero h2 {
      font-size: 52px;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .hero p {
      font-size: 18px;
      max-width: 760px;
      margin: 0 auto 30px;
      color: #f1f1f1;
    }

    .btn {
      display: inline-block;
      background: white;
      color: #0f5132;
      padding: 14px 28px;
      text-decoration: none;
      border-radius: 12px;
      font-weight: bold;
      transition: 0.3s ease;
      margin: 8px;
      box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    }

    .btn:hover {
      transform: translateY(-3px);
      background: #ebf7f0;
    }

    .btn-outline {
      background: transparent;
      color: white;
      border: 2px solid rgba(255,255,255,0.5);
    }

    .btn-outline:hover {
      background: rgba(255,255,255,0.1);
    }

    section {
      padding: 90px 8%;
    }

    .section-title {
      text-align: center;
      font-size: 38px;
      color: #0f5132;
      margin-bottom: 18px;
    }

    .section-subtitle {
      text-align: center;
      max-width: 820px;
      margin: 0 auto 50px;
      color: #555;
      font-size: 17px;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
      display: grid;
      gap: 25px;
    }

    .grid-2 {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .grid-3 {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .grid-4 {
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }

    .card {
      background: white;
      border-radius: 22px;
      padding: 30px;
      box-shadow: 0 10px 28px rgba(0,0,0,0.06);
      transition: 0.3s ease;
    }

    .card:hover {
      transform: translateY(-6px);
    }

    .card h3 {
      color: #0f5132;
      margin-bottom: 12px;
      font-size: 22px;
    }

    .card p {
      color: #444;
      font-size: 16px;
    }

    .produk-img,
    .gallery img {
      width: 100%;
      border-radius: 18px;
      object-fit: cover;
    }

    .produk-img {
      height: 280px;
      margin-bottom: 18px;
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
    }

    .gallery img {
      height: 260px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      transition: 0.3s;
    }

    .gallery img:hover {
      transform: scale(1.02);
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      margin-top: 35px;
    }

    .stat-box {
      background: rgba(255,255,255,0.12);
      padding: 25px;
      border-radius: 20px;
      backdrop-filter: blur(6px);
    }

    .stat-box h3 {
      font-size: 32px;
      margin-bottom: 8px;
    }

    .highlight {
      background: linear-gradient(135deg, #0f5132, #1f7a4d);
      color: white;
      text-align: center;
      border-radius: 26px;
      padding: 60px 35px;
      box-shadow: 0 16px 35px rgba(0,0,0,0.1);
    }

    .highlight h2 {
      font-size: 40px;
      margin-bottom: 15px;
    }

    .highlight p {
      max-width: 820px;
      margin: auto;
      color: #e7f7ef;
      font-size: 17px;
    }

    .testi-box {
      border-left: 5px solid #0f5132;
    }

    .testi-name {
      margin-top: 16px;
      font-weight: bold;
      color: #0f5132;
    }

    .contact-box p {
      margin-bottom: 10px;
      font-size: 16px;
    }

    .map-box {
      margin-top: 30px;
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    }

    .map-placeholder {
      background: #e9f1ec;
      padding: 50px 20px;
      text-align: center;
      color: #355d4b;
      font-size: 17px;
    }

    .wa-float {
      position: fixed;
      bottom: 22px;
      right: 22px;
      background: #25D366;
      color: white;
      text-decoration: none;
      width: 58px;
      height: 58px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-size: 28px;
      box-shadow: 0 10px 22px rgba(0,0,0,0.18);
      z-index: 9999;
    }

    footer {
      background: #0d3f28;
      color: white;
      text-align: center;
      padding: 28px 8%;
      font-size: 15px;
      margin-top: 40px;
    }

    @media (max-width: 768px) {
      nav {
        flex-direction: column;
        gap: 15px;
      }

      nav ul {
        justify-content: center;
      }

      .hero h2 {
        font-size: 36px;
      }

      .section-title {
        font-size: 30px;
      }

      .highlight h2 {
        font-size: 30px;
      }
    }.section-title {
     color: white;
  }

     .section-subtitle {
     color: #d9f7e9;
     }



  .home .card {
    text-decoration: none;
    color: inherit;
  cursor: pointer;
}
   .artikel {
    background: #ffffff;
    color: #1e1e1e;
}

  .artikel .section-title {
  color: #0f5132; /* hijau biar branding tetap */
}

 .artikel .section-subtitle {
  color: #444;
}

 .artikel h2 {
  color: #0f5132;
}
.artikel {
  background: #ffffff !important;
  color: #1e1e1e !important;
}

.artikel section {
  background: #ffffff !important;
}

.artikel .section-title {
  color: #0f5132 !important;
}

.artikel .section-subtitle {
  color: #444 !important;
}

.artikel p {
  color: #333 !important;
}

.artikel h2 {
  color: #0f5132 !important;
}
.menu-toggle {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
  z-index: 1001;
}@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  @media (max-width: 768px) {

   nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%; /* 🔥 ini yang bikin gak full */
    height: 100vh;
    background: #0f5132;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px;
    transition: 0.3s ease;
  }

  nav ul li {
    margin: 15px 0;
  }

  nav ul li a {
    font-size: 20px; /* 🔥 kecilin font */
  }

  nav ul.active {
    right: 0;
  }

}
  }

  .logo-img {
    height: 50px;
  }
 .menu-toggle {
  margin-left: auto;
}