/* =========================================================
   GLOBAL RESET
========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", Arial, sans-serif;
}

body {
  background: #f7f9fc;
  color: #1f1f1f;
  line-height: 1.7;
  text-align: justify;
}

/* =========================================================
   TOP HEADER
========================================================= */
.top-header {
  width: 100%;
  background: #0d6efd;
  color: white;
  padding: 8px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

/* =========================================================
   NAVBAR
========================================================= */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffffee;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e5e5e5;
  z-index: 999;
}

.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 110px;
  object-fit: contain;
}

nav ul {
  display: flex;
  gap: 30px;
}

nav ul li {
  list-style: none;
}

nav ul li a {
  text-decoration: none;
  color: #1f1f1f;
  font-weight: 500;
  transition: 0.2s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #0d6efd;
}

/* MOBILE MENU BUTTON */
#menuIcon {
  display: none;
  cursor: pointer;
  font-size: 30px;
}

/* MOBILE MENU */
#mobileMenu {
  display: none;
  flex-direction: column;
  background: white;
  width: 100%;
  padding: 20px;
  border-bottom: 1px solid #e5e5e5;
}

#mobileMenu a {
  text-decoration: none;
  color: #222;
  padding: 12px 0;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
}

/* =========================================================
   PAGE STRUCTURE
========================================================= */
section {
  max-width: 1100px;
  margin: auto;
  padding: 35px 20px;
}

h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #0d6efd;
  text-align: center;
}

h2 {
  font-size: 26px;
  margin: 25px 0 12px;
  color: #0d6efd;
}

p {
  font-size: 16px;
  margin-bottom: 15px;
}

/* =========================================================
   CARD GRID
========================================================= */
.card-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  padding-top: 10px;
}

.card {
  background: white;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0px 4px 12px #00000011;
  transition: 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 6px 18px #00000022;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.card ul {
  margin-left: 18px;
  padding-bottom: 10px;
}

.card ul li {
  margin-bottom: 6px;
}

/* =========================================================
   BUTTONS
========================================================= */
.btn-primary,
.btn-secondary,
.btn-email {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: 0.2s;
  margin-top: 10px;
}

/* Biru */
.btn-primary {
  background: #0d6efd;
}
.btn-primary:hover {
  background: #0b5ed7;
}

/* Abu */
.btn-secondary {
  background: #6c757d;
}
.btn-secondary:hover {
  background: #5a6268;
}

/* Hijau */
.btn-email {
  background: #198754;
}
.btn-email:hover {
  background: #157347;
}

/* =========================================================
   IMAGE STYLES
========================================================= */
.founder-img,
.legal-img {
  width: 100%;
  border-radius: 12px;
  margin: 10px 0;
  object-fit: cover;
}

/* =========================================================
   FOOTER
========================================================= */
footer {
  margin-top: 40px;
  background: #f0f3f8;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 860px) {
  nav ul {
    display: none;
  }

  #menuIcon {
    display: block;
  }

  #mobileMenu.active {
    display: flex;
  }

  h1 {
    font-size: 26px;
  }
  }
