* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #fff;
  background: white
}
 

/* Navbar */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
}

header .logo img {
  height: 50px;
  width: 180px; 
}

header nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.navbar {
  list-style: none;
  display: flex;
  gap: 30px;
  z-index: 1000;
}

.navbar li a {
  text-decoration: none;
  color: black;
  padding: 10px 20px;
  border-radius: 8px;
  transition: 0.3s;
}

/* Hover effect */
.navbar li a:hover {
  background: rgba(0, 30, 255, 0.1); 
}

/* Aktif (menu yang dipilih) */
.navbar li a.active {
  background: #073e88;
  color: white;
}

header nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

header nav ul li a.active,
header nav ul li a:hover {
  color: #5f9ae8; /* warna biru ungu seperti di desain */
}

/* === HAMBURGER === */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #073e88;
  z-index: 110;
}

/* RESPONSIVE (tampilan HP / tablet) */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  /* Navbar default disembunyikan */
  .navbar {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    width: 200px;
    transition: all 0.3s ease;
  }

  /* Navbar muncul saat aktif */
  .navbar.active {
    display: block;
  }

  .navbar ul {
    flex-direction: column;
    text-align: center;
    padding: 10px 0;
  }

  .navbar ul li {
    margin: 8px 0;
  }

  .navbar ul li a {
    color: #073e88;
  }
}

/* FOOTER SECTION */
.footer {
  position: relative;
  background: url('building.jpg') no-repeat center center/cover;
  color: #fff;
  padding: 100px 0;
  overflow: hidden;
  padding-top: 15px;
}

.footer-overlay {
  background: transparent;
  padding: 50px 20px;
}

.footer-logo {
  position: absolute;
  top: 30px;
  left: 40px;
}

.footer-logo img {
  width: 200px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 40px;
  margin-top: 150px;
  margin-bottom: -100px;
}

/* MAP SECTION */
.footer-map {
  flex: 1 1 500px;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
}

/* CONTACT CARD */
.footer-contact {
  flex: 1 1 400px;
  background-color: #ffffff;
  color: #002766;
  border-radius: 20px;
  padding: 30px 35px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.footer-title {
  background-color: #002b6b;
  color: #fff;
  padding: 12px 20px;
  border-radius: 25px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}

.contact-info p {
  font-size: 15px;
  margin: 5px 0;
}

.office {
  margin-top: 15px;
}

.office h4 {
  font-size: 16px;
  font-weight: 600;
  color: #002b6b;
}

.office p {
  font-size: 14px;
  color: black;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-map, .footer-contact {
    width: 100%;
  }
}