:root {
  --green: #117139;
  --green-2: #0f5d2d;
  --white: #ffffff;
  --muted: #6b6b6b;
  --bg: #f5f7f6;
  --card: #e8f3ec;
  --shadow: 0 8px 20px rgba(17, 113, 57, 0.08);
}

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

body {
  background: var(--bg);
  color: #111;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

.header-space {
  height: 70px;
}

header.site-header {
  background: linear-gradient(90deg, var(--green), var(--green-2));
  color: var(--white);
  padding: 18px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
  flex-wrap: wrap;
  gap: 12px;
}

header.site-header .brand {
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

header.site-header .brand i {
  font-size: 22px;
}

header.site-header .nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.header-cta {
  background: var(--white);
  color: var(--green);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.hero {
  padding: 64px 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  background: linear-gradient(120deg, #117139, #0f5d2d);
  color: #fff;
}

.hero-left h1 {
  font-size: 44px;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-left p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  margin-bottom: 22px;
  max-width: 620px;
}

.btn-primary {
  background: #fff;
  color: #117139;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-block;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.hero-right {
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.small-features {
  padding: 28px 6%;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-top: 10px;
  flex-wrap: wrap;
}

.feature-item {
  background: var(--white);
  flex: 1 1 200px;
  padding: 18px;
  border-radius: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: var(--shadow);
}

.feature-item i {
  font-size: 28px;
  color: var(--green);
  min-width: 44px;
  text-align: center;
}

.feature-section {
  padding: 64px 6%;
  background: linear-gradient(180deg, transparent 0, rgba(17, 113, 57, 0.03) 100%);
  text-align: center;
}

.feature-section h2 {
  color: var(--green);
  font-size: 28px;
  margin-bottom: 12px;
}

.feature-section p {
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto 32px;
}

.feature-main-box {
  width: 70%;
  height: 260px;
  margin: 0 auto;
  border-radius: 14px;
  background: var(--card);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-main-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-boxes {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.feature-box {
  width: 200px;
  height: 140px;
  border-radius: 12px;
  background: var(--card);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.adv-section {
  padding: 64px 6%;
}

.adv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.adv-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.adv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.adv-list li {
  background: var(--white);
  padding: 14px 16px;
  border-radius: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: var(--shadow);
}

.adv-list i {
  color: var(--green);
  font-size: 22px;
}

.adv-right {
  border-radius: 12px;
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adv-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.adv-thumbs {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 10px;
}

.thumb {
  width: 32%;
  height: 110px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.digital {
  padding: 64px 6%;
  background: var(--green);
  color: var(--white);
  border-radius: 14px;
  margin: 30px 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.digital-left {
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.digital-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.digital-right h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.digital-right p {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
}

.digital-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.df-item {
  background: rgba(255, 255, 255, 0.12);
  padding: 10px 14px;
  border-radius: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 600;
}

.df-item i {
  font-size: 18px;
  color: #fff;
}

.location {
  padding: 48px 6% 80px 6%;
  text-align: center;
}

.location iframe {
  width: 100%;
  height: 420px;
  border-radius: 12px;
  border: 0;
  box-shadow: var(--shadow);
}

.footer {
  background: #0e4f24;
  color: var(--white);
  padding: 20px 6%;
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
}

.lokasi-section {
  padding: 70px 6% 20px;
  background: #fff;
  text-align: center;
}

.lokasi-info {
  max-width: 900px;
  margin: 0 auto 40px;
}

.lokasi-info h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #2e7d32;
}

.lokasi-detail {
  display: inline-flex;
  gap: 12px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.lokasi-detail i {
  font-size: 30px;
  color: #2e7d32;
}

.lokasi-map-full {
  width: 100%;
  margin-top: 30px;
}

.lokasi-map-full iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

@media(max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 36px 6%;
    margin-top: 30px;
  }

  .small-features {
    flex-direction: column;
  }

  .feature-boxes {
    flex-direction: column;
    align-items: center;
  }

  .adv-grid {
    grid-template-columns: 1fr;
  }

  .adv-right {
    height: 240px;
  }

  .thumb {
    width: 48%;
    height: 100px;
  }

  .digital {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 36px 6%;
  }

  .digital-left {
    height: 220px;
  }
}

@media(max-width: 600px) {
  .adv-section {
    padding: 40px 20px;
  }

  .adv-list li {
    padding: 12px 14px;
  }

  .adv-right {
    height: 200px;
  }

  .adv-thumbs {
    gap: 10px;
    justify-content: center;
  }

  .thumb {
    width: 90%;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .lokasi-section {
    padding: 60px 20px 10px;
  }

  .lokasi-map-full iframe {
    height: 350px;
  }

  .lokasi-detail {
    flex-direction: column;
  }
}
