:root {
  --primary:#548235;
  --primary-600:#47712f;
  --muted:#6b7280;
  --light:#f7f7f7;
  --white:#fff;
  
}

body {
  font-family: 'Poppins', sans-serif;
}
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(210, 224, 215, 0.63); /* abu abu transparan */
  display: flex;
  justify-content: flex-start; /* biar kontainer mulai dari kiri */
  z-index: 1000;
  padding: 8px 0;
  backdrop-filter: blur(6px); /* efek glassy */
}

.header-container {
  width: 95%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between; /* kiri logo - kanan home */
  margin: 0 auto; /* tetap center secara keseluruhan */
}

.logo-left .logo-img {
  height: 30px; /* bisa disesuaikan */
  display: block;
}

.home-button {
  color: #fff; /* ikon putih */
  font-size: 22px;
  text-decoration: none;
  padding: 8px;
  border-radius: 50%;
  transition: background 0.3s;
}

.home-button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-banner {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero-banner img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

.hero-banner .overlay-logo {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255,255,255,0.3); /* transparan samar */
  border-radius: 50%;
  padding: 6px;
}

.hero-banner .overlay-logo img {
  width: 50px;
  height: auto;
}
.highlight-text {
  background: #ff0000; /* merah */
  color: #fff;         /* putih */
  font-weight: bold;
  text-align: center;
  padding: 16px;
  margin: 20px 0;
  font-size: 15px;
  line-height: 1.4;
  text-transform: uppercase;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.benefit-list {
  margin: 30px 0;
  padding: 0 20px;
}

.benefit-list ul {
  list-style-type: disc;
  padding-left: 20px;
}

.benefit-list li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5;
}

.benefit-list li strong {
  color: #e60000; /* merah sesuai gambar */
}
.section-title {
  text-align: center;
  margin: 30px 0 15px;
}

.section-title h2 {
  font-size: 15px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
}

.highlight-text:hover {
  transform: scale(1.05); /* membesar sedikit */
}
.banner-slider {
  position: relative;
  width: 100%;
  max-width: 600px; /* bisa diatur sesuai kebutuhan */
  margin: 20px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background: #fff;
  user-select: none; /* biar tidak ke-block teks saat drag */
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
}

.slide img {
  width: 100%;
  height:500px; /* atur tinggi sesuai desain */
  object-fit: contain; /* biar gambar tidak ketarik */
  display: block;
}

.dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.dot {
  width: 15px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #548235; /* hijau sesuai permintaan */
}


.banner-wrap {
  margin-top:16px;
  border-radius:8px;
  overflow:hidden;
  border:1px solid #eee;
}
.banner-wrap img {
  width:100%;
  display:block;
}
.header__logo--text {
  color: #548235;
  font-size: 1.8rem;
  font-weight: 400; }
  .header__logo--text strong {
    font-weight: 600;
    color: #FFB200; }
  .header__logo--text a {
    color: #ff0000; }
.header__logo--intro {
  font-size: 2.8rem;
  width: 100%;
  text-align: center; }
.header__title {
  color: #000000;
  font-size: 1.8rem;
  font-weight: 300; }
.syarat-box {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #000;
  margin: 2px auto;
  padding: 15px;
  max-width: 500px;
  background: #fff;
}

.syarat-box h3 {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 4px;
}

.syarat-box ol {
  padding-left: 20px;
  font-size: 14px;
  margin-bottom: 20px;
}
.note-box {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 12px 18px;
  font-weight: bold;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.note-box:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

/* Tombol Back */
.back-button {
  position: fixed;
  right: 20px;       /* posisikan di kanan */
  bottom: 850px;      /* agak di atas tombol WA kalau ada */
  background: rgba(128,128,128,0.15); /* abu-abu samar */
  color: #555;       /* teks panah abu-abu */
  font-size: 28px;   /* panah tebal besar */
  font-weight: 700;
  text-decoration: none;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: left;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: background 0.2s, color 0.2s;
  z-index: 100;
}

.back-button:hover {
  background: rgba(128,128,128,0.25);
  color: #000;
}
#summaryCard {
  border:1px solid #aac7f3fd;
  background:#fff5e1;
  border-radius: 4px;
}
#summaryCard h3 {
  margin-left: 10px;
  margin-top:3;
  color:var(--primary);
    font-family: 'Poppins', sans-serif;
}
#summaryText{
margin-left: 10px;
font-size: 14px;
}
.summaryCard h3,
.card h3 {
  margin-left: 10px;
  font-size: 17px;
}

/* Toast Notification */
/* Toast notif */
.toast {
  visibility: hidden;
  min-width: 250px;
  background: #333;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 12px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease;
}
.toast.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.video-slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 8px 0;
  scroll-snap-type: x mandatory;
}

.video-slider::-webkit-scrollbar {
  height: 8px;
}
.video-slider::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
  border-radius: 4px;
}

.video-item {
  flex: 0 0 280px; /* lebar tiap video */
  scroll-snap-align: start;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ddd;
  background: #000;
}

.video-item video {
  width: 100%;
  height: 160px;
  display: block;
  object-fit: cover;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366; /* hijau WA */
  color: #fff;              /* logo putih */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20ba5a; /* sedikit lebih gelap saat hover */
}





.body {
  margin:4;font-family:'Poppins', sans-serif;
  line-height:1.6;background:#fff;
 
}
.container{
  max-width:1000px;margin:0 auto;
  padding:0 16px;
}
.header{
  background:#fff;
  border-bottom:1px solid #eee;
  position:sticky;
  top:0;z-index:10;
}
.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 0;
}
.logo{font-weight:700;
  color:var(--primary);
}
.btn{
  display:inline-block;
  padding:10px 16px;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  align-items: center; 
  display: block;       /* biar bisa auto center */
  margin: 0 auto;       /* center horizontal */
  padding: 10px 24px;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: var(--primary-600);
}

.section{
  padding:4px 0;
}
.hero{
  padding:2px 0;
  background:#f9f9f9;
}
.hero .title{
  font-size:28px;
  margin:0;
}
.hero .highlight{
  color:var(--primary);
}
.form.card {
  padding: 20px;          /* beri ruang di dalam card */
  border-radius: 8px;     /* biar lebih halus */
  background: #87bcf1;  /* abu terang biar beda */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 8px;    /* beri jarak antar field */
}

.input, textarea, select {
  width: 100%;            /* isi penuh, tidak mepet */
  padding: 10px 12px;     /* biar ada ruang dalam */
  border: 1px solid #ccc; 
  border-radius: 6px;
  box-sizing: border-box; /* supaya padding tidak bikin melar */
}


.form-group.full {
  grid-column: span 2;
}

label {
  font-weight: 600;
  margin-bottom: 6px;
  font-family: 'Poppins', sans-serif;
}

.home-button {
  position: fixed;
  top: 15px;
  right: 15px;
  background: #03f062c0;     /* hijau bulat */
  color: #fff;             /* ikon putih */
  font-size: 20px;
  padding: 10px;
  border-radius: 50%;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.home-button:hover {
  background: #1da851;
  color: #fff; /* tetap putih */
}
.form-group {
  display: flex;
  align-items: center;
  background: #f0f6ff; /* warna biru muda */
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 6px 10px;
  margin-bottom: 12px;
}

.form-group label {
  font-weight: bold;
  font-size: 14px;
  color: #084b8d;
  margin-right: 10px;
  flex: 0 0 130px; /* lebar tetap untuk label */
}
.form-group .input {
  border: none;
  width: 100%;
  background: transparent;
  flex: 1;
  padding: 6px 12px;   /* tambahin padding kanan-kiri */
  font-size: 14px;
  outline: none;
  text-indent: 0;      /* reset indent */
}



/* khusus textarea */
.form-group textarea.input {
  min-height: 40px;
  resize: vertical;
}
.form-group {
  display: grid;
  grid-template-columns: 130px auto; /* kiri label, kanan input */
  align-items: center; /* rata tengah vertikal */
  margin-bottom: 8px;
}

.form-group label {
  text-align: left;
  padding-right: 1px;
  font-weight: bold;
}

.form-group label::after {
  content: " :";
  font-weight: bold;
}

.form-group.textarea {
  display: flex;
  align-items: flex-start; /* label di atas sejajar */
 
}

.form-group.textarea label {
  width: 140px; 
  font-weight: bold;
  margin-right: 8px;
  text-align: left;
  padding-top: 6px; /* kasih jarak biar label agak turun */
}

.form-group.textarea .input {
  flex: 1;
  min-height: 60px; /* tinggi minimal textarea */
  resize: vertical; /* biar bisa diperbesar manual */
}
.form-group.full {
  display: flex;
  justify-content: center; /* tombol rata tengah */
}


.form .full{
  grid-column:1/-1;
}
.input, select, textarea{
  width:100%;
  padding:10px;
  border:1px solid #ccc;
  border-radius:6px;
}
.input:focus{border-color:var(--primary);}
.video-wrap{position:relative;aspect-ratio:16/9;overflow:hidden;border-radius:8px;}
.strip{background:#f2f8f2;border:1px dashed var(--primary);padding:10px;border-radius:6px;}
.footer{padding:20px 0;text-align:center;color:#777;background:#f9f9f9;margin-top:30px;}
.success{border-color:#c6f6d5;background:#f0fff4;color:#22543d;}
