:root {
  --red: #a82e31;
  --navy: #2e3a63;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  color: #fff;
}

.top-section {
  position: relative;
  background-color: var(--red);
  padding: 40px 20px 50px 20px;
  text-align: center;
  overflow: hidden;
}

.top-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Path gambar diarahkan keluar folder css lalu masuk ke folder img */
  background-image: url('../img/kantorpusat.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  z-index: 0;
}

.top-section .content {
  position: relative;
  z-index: 1;
}

.logo-box {
  background: white;
  display: inline-block;
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 25px;
  padding-right: 25px;
  border-radius: 7px;
  margin-bottom: 25px;
}

.logo-box img {
  max-width: 500px;
  width: 100%;
  height: auto;
  display: block;
}

h1.title {
  font-style: italic;
  font-weight: 800;
  font-size: 2.4rem;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.law-block {
  margin-bottom: 22px;
}

.law-title {
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.law-sub {
  font-style: italic;
  font-size: 0.9rem;
  font-weight: 400;
}

.warning-block {
  margin: 30px 0 15px 0;
}

.warning-title {
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  line-height: 1.6;
}

.warning-sub {
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 400;
  margin-top: 10px;
  line-height: 1.5;
}

.buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  border: 2px solid #fff;
  border-radius: 4px;
  padding: 12px 22px;
  letter-spacing: 0.5px;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  background: #fff;
  color: var(--red);
}

.bottom-section {
  background-color: #eceef1;
  color: var(--navy);
  padding: 40px 20px;
  text-align: center;
}

.bottom-section h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.bottom-section .sub-en {
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 400;
  margin-bottom: 35px;
}

.contact-wrap {
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
}

.contact-item {
  max-width: 280px;
}

.contact-item .label-id {
  color: var(--red);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 3px;
}

.contact-item .label-en {
  color: var(--red);
  font-style: italic;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.contact-item .service {
  color: var(--red);
  font-weight: 800;
  font-size: 1rem;
  word-break: break-word;
}

.call {
  color: var(--red);
  text-decoration: none;
}

.call:hover {
  color: #2e3a63;
  cursor: pointer;
  transition: color 0.2s;
}

.call:active {
  color: #a82e31;
}

footer {
  text-align: center;
  padding: 18px 10px;
  font-size: 0.75rem;
  color: #888;
  background: #fff;
}

@media (max-width: 600px) {
  h1.title {
    font-size: 1.7rem;
  }
  .warning-title {
    font-size: 1rem;
  }
  .law-title {
    font-size: 0.85rem;
  }
  .contact-wrap {
    gap: 35px;
  }
  .btn {
    font-size: 0.78rem;
    padding: 10px 16px;
  }
  .top-section {
    padding: 30px 15px 40px 15px;
  }
}