* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
  background: #f6fdf6;
  color: #2e3b2e;
  line-height: 1.6;
}
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #c8e6c9, #ffffff);
  padding: 70px 20px 50px;
  text-align: center;
  border-bottom-left-radius: 40% 20px;
  border-bottom-right-radius: 40% 20px;
  box-shadow: 0 8px 20px rgba(0,40,0,0.05);
}
.hero h1 {
  font-size: 2.8rem;
  color: #2e7d32;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.hero .subtitle {
  font-size: 1.2rem;
  color: #3e5a3e;
  font-weight: 400;
}
.price-tag {
  display: inline-block;
  margin-top: 25px;
  background: white;
  padding: 10px 30px;
  border-radius: 40px;
  font-weight: bold;
  font-size: 1.3rem;
  color: #2e7d32;
  box-shadow: 0 6px 12px rgba(0,0,0,0.06);
  border: 1px solid #a5d6a7;
}
.quick-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin: 30px 0 10px;
  font-weight: 500;
  background: rgba(255,255,255,0.8);
  padding: 15px 25px;
  border-radius: 60px;
  backdrop-filter: blur(8px);
  color: #2e7d32;
}
.quick-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

section {
  padding: 50px 0;
}
h2 {
  font-size: 2rem;
  color: #2e7d32;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
}
h2:after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #66bb6a;
  margin: 10px auto 0;
  border-radius: 3px;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 20px;
}
.facility-card {
  background: white;
  padding: 25px 20px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,40,0,0.05);
  border: 1px solid #e8f5e9;
  transition: transform 0.2s;
}
.facility-card:hover {
  transform: translateY(-5px);
  border-color: #a5d6a7;
}
.facility-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.facility-card h3 {
  font-size: 1.2rem;
  color: #2e7d32;
}

.price-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 25px;
}
.price-item {
  background: white;
  border-radius: 30px;
  padding: 30px 25px;
  flex: 1 1 250px;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,40,0,0.06);
  border: 1px solid #c8e6c9;
}
.price-item h3 {
  font-size: 1.6rem;
  color: #2e7d32;
  margin-bottom: 5px;
}
.price-item .price {
  font-size: 2.2rem;
  font-weight: bold;
  color: #2e7d32;
  margin: 12px 0;
}
.price-item p {
  color: #3e5a3e;
}

/* Galeri */
.gallery {
  background: #ffffff;
  border-radius: 30px;
  padding: 30px;
  margin-top: 20px;
  border: 1px solid #c8e6c9;
  box-shadow: 0 10px 25px rgba(0,40,0,0.04);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,40,0,0.08);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #e8f5e9;
  background: #f9fff9;
}
.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0,80,0,0.12);
}
.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,30,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}
.lightbox.active {
  display: flex;
}
.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 25px; right: 40px;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  transition: 0.2s;
}
.lightbox-close:hover {
  color: #a5d6a7;
}

.map-container {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,40,0,0.06);
  margin: 20px 0;
  border: 1px solid #c8e6c9;
}
iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

.booking-form {
  background: white;
  border-radius: 30px;
  padding: 35px 25px;
  max-width: 600px;
  margin: 30px auto 0;
  box-shadow: 0 10px 25px rgba(0,40,0,0.06);
  border: 1px solid #c8e6c9;
}
.form-group {
  margin-bottom: 20px;
  text-align: left;
}
label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  color: #2e3b2e;
}
input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #c8e6c9;
  border-radius: 16px;
  font-size: 1rem;
  background: #f9fff9;
  transition: 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #4caf50;
  box-shadow: 0 0 0 3px rgba(76,175,80,0.1);
}
.btn-wa {
  background: #25D366;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 40px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s;
  margin-top: 10px;
}
.btn-wa:hover {
  background: #1da851;
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  z-index: 999;
  transition: 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.08);
}

footer {
  text-align: center;
  padding: 30px 20px;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 0.9rem;
  margin-top: 20px;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }
  .quick-info {
    flex-direction: column;
    align-items: center;
  }
}