/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

body {
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
  font-size: 16px;
  padding-bottom: 60px;
}

/* Header */
header {
  background: #fff;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 10;
}

header nav a {
  margin: 0 12px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

header nav a:hover {
  color: #3b82f6;
}

.chat-btn {
  background: #3b82f6;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 20px;
  background: #e0f2fe;
}

.hero h1 {
  font-size: 2.2em;
  margin-bottom: 12px;
}

.hero p {
  color: #444;
  margin-bottom: 20px;
}

.buttons a.primary,
.buttons a.secondary {
  display: inline-block;
  padding: 12px 24px;
  margin: 5px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

.buttons .primary {
  background: #3b82f6;
  color: white;
}

.buttons .primary:hover {
  background: #2563eb;
}

.buttons .secondary {
  background: #e2e8f0;
  color: #111;
}

.buttons .secondary:hover {
  background: #cbd5e1;
}

/* Harga Table */
.harga-table {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
}

.harga-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
}

.harga-table th,
.harga-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.harga-table th {
  background: #f1f5f9;
  font-weight: 600;
}

.tersedia {
  color: green;
  font-weight: bold;
}

/* Steps Section */
.steps {
  max-width: 600px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
}

.steps p {
  margin: 10px 0;
  font-size: 16px;
}

/* Testimoni Section */
.testimoni {
  max-width: 600px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
}

.testimoni blockquote {
  font-style: italic;
  margin: 20px 0 5px;
  color: #555;
}

.testimoni p {
  color: #444;
  font-weight: 500;
}

/* Kontak Form Style & Wrapper */
.kontak-wrapper {
  max-width: 600px;
  margin: 40px auto;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.kontak-wrapper h2,
.kontak-wrapper h3 {
  margin-bottom: 10px;
  color: #111;
}

.kontak-wrapper p {
  margin-bottom: 8px;
  font-size: 15px;
}

.kontak-divider {
  margin: 20px 0;
  border: none;
  border-top: 1px solid #ddd;
}

.kontak-wrapper form label {
  display: block;
  margin-top: 16px;
  margin-bottom: 6px;
  font-weight: 600;
}

.kontak-wrapper input,
.kontak-wrapper textarea,
.kontak-wrapper select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  resize: vertical;
  font-size: 15px;
}

.submit-btn {
  margin-top: 20px;
  background: #3b82f6;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #2563eb;
}

/* Footer */
.footer {
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
  color: #777;
  background: #f1f5f9;
}

/* Responsive Layout */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  header nav {
    margin-top: 10px;
  }

  header nav a {
    display: inline-block;
    margin: 6px 8px 6px 0;
  }

  .hero {
    padding: 40px 20px;
  }

  .hero h1 {
    font-size: 1.5em;
  }

  .kontak-wrapper {
    margin: 20px 15px;
    padding: 16px;
  }
}
