body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f9fafa;
  color: #333;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  margin-left: 20px;
  color: #2E8B57;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background: #e0f5ea;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.hero .text {
  max-width: 500px;
}

.btn-primary {
  background: #2E8B57;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 20px;
  display: inline-block;
}

.section {
  padding: 60px 20px;
  background: white;
}

.features {
  list-style: none;
  padding: 0;
}

.features li {
  margin-bottom: 10px;
  font-size: 18px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.gallery img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

form {
  max-width: 400px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

form input {
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

form button {
  background: #2E8B57;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#formStatus {
  text-align: center;
  margin-top: 10px;
  color: green;
}

footer {
  text-align: center;
  background: #eee;
  padding: 30px;
  font-size: 14px;
}

/* Tombol WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  font-size: 26px;
  padding: 12px 14px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Animasi scroll */
.fade-in, .slide-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-out;
}

.fade-in.active, .slide-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  nav a {
    margin: 10px;
  }

  .gallery {
    flex-direction: column;
    align-items: center;
  }
}

/*BATAS 

/* style.css */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
  z-index: 999;
}

.popup-content {
  background-color: white;
  margin: 15% auto;
  padding: 20px;
  width: 350px;
  text-align: center;
  border-radius: 10px;
  position: relative;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

#countdown {
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
}

