/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* ================= HEADER ================= */
#main-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
}

#topbar {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

#topbar .container {
  max-width: 85rem;
  margin: auto;
  padding: 6px 16px;
  display: flex;
  gap: 15px;
  justify-content: space-between;
  font-size: 13px;
}

#navbar {
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}

.nav-flex {
  max-width: 85rem;
  margin: auto;
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.brand img {
  height: 48px;
}

.menu {
  display: flex;
  list-style: none;
  gap: 22px;
}

.menu a {
  text-decoration: none;
  color: #000;
}

.menu a.active {
  color: #2563eb;
}

/* ================= MAIN (INI KUNCI JARAK) ================= */
#main-content {
  padding-top: 135px; /* RAPAT & STABIL */
}

/* ================= CONTACT ================= */
.contact {
  padding: 60px 20px;
}

.contact-grid {
  max-width: 75rem;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.contact-info h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.contact-info h2 span {
  color: #2563eb;
}

.contact-info p {
  margin-bottom: 20px;
  color: #555;
}

.contact-info ul {
  list-style: none;
}

.contact-info li {
  margin-bottom: 10px;
  color: #333;
}

.contact-map iframe {
  width: 100%;
  height: 320px;
  border-radius: 10px;
  border: 0;
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

/* ================= FOOTER ================= */
.footer {
  background: #111827;
  color: #9ca3af;
  text-align: center;
  padding: 30px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  #main-content {
    padding-top: 160px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}
