* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* NAVBAR */
.navbar {
  height: 60px;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 29px;
  position: fixed; 
  width: 100%;
  top: 0;
  z-index: 100;
}

.logo img {
    height:60px;     /* ini yang ngontrol besar kecil */
    object-fit:contain;
}


.logo {
  font-weight: bold;
  font-size: 20px;
}

/* HAMBURGER */
.hamburger {
    width: 30px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    background: #000;
    margin: 6px 0;
}

/* ================= POPUP MENU ================= */
.menu-popup {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    transition: 0.4s ease;
    z-index: 999;
}

/* ISI MENU */
.menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 260px;
    height: 100%;
    background: #ffffff;
    padding: 40px 25px;
}

/* LINK MENU */
.menu-content a {
    display: block;
    text-decoration: none;
    color: #000;
    font-size: 18px;
    margin-bottom: 25px;
}

/* TOMBOL CLOSE */
.close-btn {
    font-size: 30px;
    cursor: pointer;
    display: block;
    text-align: right;
    margin-bottom: 40px;
}
/* OVERLAY */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  z-index: 99;
}

.overlay.show {
  display: block;
}
/* POPUP */
.popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.popup-content {
    background: white;
    color: black;
    width: 250px;
    padding: 20px;
    position: absolute;
    right: 20px;
    top: 70px;
    border-radius: 10px;
}

.popup-content a {
    display: block;
    margin: 15px 0;
    text-decoration: none;
    color: black;
}
.close {
    float: right;
    font-size: 20px;
    cursor: pointer;
}
/* MAIN */
.main {
  margin-top: 60px;
  min-height: 100vh;
  background: linear-gradient(135deg, #e6a0a0, #050541);
  display: flex;
  padding: 60px;
}

/* LEFT */
.left {
  width: 50%;
  color: #fff;
}

.left h1 {
  margin-bottom: 15px;
}

/* RIGHT */
.right {
  width: 50%;
  display: flex;
  justify-content: center;
}

/* CARD */
.card {
  background: #fff;
  width: 100%;
  max-width: 500px;
  padding: 30px;
  border-radius: 15px;
}

.card h2 {
  margin-bottom: 20px;
}

.card input,
.card select,
.card textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
}

.card textarea {
  height: 80px;
}

.card button {
  width: 100%;
  padding: 12px;
  border: none;
  background: #0d6efd;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .main {
    flex-direction: column;
  }

  .left, .right {
    width: 100%;
  }

  .right {
    margin-top: 30px;
  }
}

/* ===== NAVBAR BAWAH / INFO BAR ===== */
.bottom-info {
  width: 100%;
  background: #f4f6fb;
  padding: 40px 0;
}

.bottom-container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* KARTU / BOX (SAMA SEPERTI GAMBAR) */
.info-card {
  background: #f4f6fb;
  padding: 25px 30px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* JUDUL KARTU */
.info-card h3 {
  margin-bottom: 15px;
  color: #0b1b3a;
  font-size: 20px;
}

/* TAUTAN CEPAT */
.quick-links {
  list-style: none;
  padding: 0;
}

.quick-links li {
  margin-bottom: 8px;
}

.quick-links a {
  text-decoration: none;
  color: #0b1b3a;
  transition: 0.2s;
}

.quick-links a:hover {
  color: #1e90ff;
}

/* ITEM KONTAK */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.icon {
  font-size: 18px;
}

/* TEKS KONTAK */
.label {
  font-size: 13px;
  color: #777;
  margin-bottom: 3px;
}

.value {
  font-size: 14px;
  color: #0b1b3a;
  line-height: 1.5;
}

/* RESPONSIVE HP */
@media (max-width: 768px) {
  .bottom-container {
    grid-template-columns: 1fr;
  }
}