/* BUTTON SITE PLAN - HERO */
.btn-siteplan {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 36px;
  background: #f5c77a;          /* emas lembut */
  color: #0f2e35;               /* kontras gelap */
  font-size: 16px;
  font-weight: 600;
  border-radius: 999px;         /* pill */
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(245, 199, 122, 0.35);
}

/* HOVER EFFECT */
.btn-siteplan:hover {
  background: #ffd891;
  color: #0f2e35;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(245, 199, 122, 0.55);
}

/* ACTIVE (saat diklik) */
.btn-siteplan:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(245, 199, 122, 0.4);
}

/* SITE PLAN MODAL */
.siteplan-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.siteplan-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  animation: zoomIn 0.3s ease;
}

/* CLOSE BUTTON */
.siteplan-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.siteplan-close:hover {
  color: #f5c77a;
}

/* ANIMATION */
@keyframes zoomIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* FIX JARAK HERO */
.custom-hero {
  min-height: 40vh;          /* sebelumnya 100vh */
  padding: 40px 10px;        /* kontrol jarak atas-bawah */
  display: flex;
  align-items: center;
}

/* SECTION */
.section { padding:60px 20px; }
.section h2 {
text-align:center;
font-size:22px;
font-weight:700;
margin-bottom:40px;
}

/* CARDS */
.cards {
max-width:1100px;
margin:0 auto;
display:grid;
grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
gap:24px;
}
.card {
background:#fff;
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
display:flex;
flex-direction:column;
}
.card img { width:100%; height:180px; object-fit:cover; }
.card-body { padding:20px; flex:1; }
.card-body h3 { font-size:16px; margin-bottom:10px; }
.meta { font-size:12px; color:#6b7280; margin-bottom:12px; }
.card-body p { font-size:14px; line-height:1.6; margin-bottom:16px; color:#374151; }
.card-body a { color:#f97316; font-size:14px; text-decoration:none; font-weight:600; }


.btn-center { text-align:center; margin-top:40px; }
.btn-center a {
background:#f97316;
color:#fff;
padding:12px 32px;
border-radius:999px;
text-decoration:none;
font-weight:600;
}

/* HERO TEXT READABILITY */
.hero-image p {
  max-width: 720px;          /* jangan terlalu lebar */
  margin: 0 auto 36px;       /* center + jarak bawah */
  font-size: 10px;
  line-height: 1;          /* bikin napas */
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.2px;
}

/* =========================
   CONTACT BOX
========================= */
.contact-box {
  max-width: 720px;          /* kunci lebar teks (desktop enak dibaca) */
  padding: 80px 20px;
}

/* TITLE */
.contact-box h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  color: #0f2e35;
  margin-bottom: 12px;
}

/* DESCRIPTION */
.contact-box p {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 24px;
}

/* WHATSAPP BUTTON */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #0f766e;
  text-decoration: none;
}

.btn-whatsapp i {
  font-size: 18px;
}

.btn-whatsapp:hover {
  text-decoration: underline;
}

/* =========================
   MOBILE FIX (PENTING)
========================= */
@media (max-width: 768px) {
  .contact-box {
    max-width: 100%;        /* full tapi aman */
    padding: 60px 16px;     /* jangan mepet layar */
  }

  .contact-box h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .contact-box p {
    font-size: 14px;
    line-height: 1.6;
  }
}
