* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: "Montserrat", sans-serif;
  height: 100%;
  background-color: #f4f4f4;
}

/* HEADER */
header {
  background-color: #431650;
  padding: 20px 40px;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 40px;
}

.logo span {
  color: white;
  font-weight: bold;
  font-size: 18px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 16px;
}

nav ul li a.active {
  font-weight: bold;
  border-bottom: 3px solid #ffd25d;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 400;
  font-size: 15px;
  padding: 10px;
  display: inline-block;
  position: relative;
}

.nav-menu a:hover {
  transform: scale(1.05);
  color: #ffffff;
}

.nav-menu .active {
  color: #ffffff;
  font-weight: 600;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #ffffff;
  list-style: none;
  min-width: 180px;
  border-radius: 5px;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.dropdown-menu li a {
  padding: 10px 20px;
  display: block;
  color: #431650;
}

.dropdown-menu li a:hover {
  background-color: #9e9e9e;
  border-radius: 5px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.nav-menu a.active:hover {
  transform: none;
  color: #ffffff;
  cursor: default;
}

.nav-menu li:nth-child(3) a,
.nav-menu li:nth-child(4) a,
.nav-menu li:nth-child(5) a {
  position: relative;
  top: -2px;
}
.kontak-hero {
  background: linear-gradient(180deg, #431650 55%, #ffd25d 300%);
  color: white;
  padding: 400px 20px 80px;
  text-align: center;
  position: relative;
}
.kontak-hero h1 {
  font-size: 60px;
  font-weight: 700;
  margin-top: -200px;
}
.hiasan {
  position: absolute;
  width: 50px; /* Ubah sesuai kebutuhan */
  opacity: 0.8;
  z-index: 0;
}

/* Posisi spesifik masing-masing hiasan */
.hiasan-1 {
  top: -10px;
  left: 270px;
  width: 1000px;
}
.media-partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 20px;
  gap: 30px;
  margin-top: -120px;
}

.box {
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 15px;
  max-width: 800px;
  width: 100%;
  position: relative;
}

.label {
  font-weight: 700;
  font-size: 20px;
  padding: 5px 12px;
  border-radius: 5px;
}

.eksternal {
  background-color: #ffd25d;
  color: #000000;
}

.internal {
  background-color: #ffd25d;
  color: #000000;
}

.box ol {
  margin-top: 15px;
  padding-left: 20px;
  line-height: 1.7;
  color: #333;
}

.form-button {
  background-color: #431650;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  position: absolute;
  right: 20px;
  bottom: -20px;
  cursor: pointer;
}

.form-button:hover {
  background-color: #5d2a70;
}

.kontak-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #f8f4fb;
  padding: 5px 19px; /* diperkecil dari sebelumnya */
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  font-weight: 700;
  font-size: 17px;
  color: #431650;
  cursor: pointer;
  transition: transform 0.2s ease;
  line-height: 1;
}

.kontak-button img {
  width: 40px;
  height: 40px;
}

.kontak-button:hover {
  transform: scale(1.05);
}
.footer {
  background-color: #431650;
  color: white;
  padding: 50px 30px 20px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  font-family: "Poppins", sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 30px;
  gap: 30px;
}

.footer-left h3,
.footer-right h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-left p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-center {
  text-align: center;
}

.footer-center img.footer-logo {
  width: 130px;
  margin-bottom: 10px;
}

.footer-center p {
  font-size: 18px;
  font-weight: semibold;
}

.footer-center p strong {
  color: white;
}

.social-icons-grid {
  display: grid;
  grid-template-columns: repeat(3, 40px); /* 3 kolom */
  grid-gap: 10px;
  justify-content: center;
  margin-top: 10px;
}

.social-icons-grid img {
  width: 40px;
  height: 40px;
}

.footer hr {
  border: none;
  border-top: 2px solid #ddd;
  margin: 20px 0;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #ccc;
}
/* Tombol Toggle Menu untuk Mobile */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 1001;
}
/* Tombol Close (X) di Sidebar */
.close-btn {
  display: none;
  font-size: 28px;
  color: white;
  background: none;
  border: none;
  align-self: flex-end;
  margin-bottom: 20px;
  cursor: pointer;
}

/* Media Query untuk Tampilan Mobile */
@media (max-width: 768px) {
  header {
    position: static;
    width: 100%;
    padding: 10px 20px;
  }
  .close-btn {
    display: block;
  }
  .misi-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }

  .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    left: -260px;
    width: 240px;
    height: 100vh;
    background-color: #431650;
    flex-direction: column;
    padding: 60px 20px 20px;
    display: flex;
    transition: all 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  nav.open {
    left: 0;
  }

  .nav-menu {
    flex-direction: column;
    gap: 20px;
  }

  .nav-menu li {
    width: 100%;
  }

  .dropdown-menu {
    position: relative;
    background-color: #fff;
    box-shadow: none;
    padding-left: 15px;
  }

  .dropdown-menu li a {
    color: #431650;
    padding: 10px 10px;
  }
  .footer {
    padding: 20px 15px 10px;
  }

  .footer-content {
    flex-direction: row; /* biar sejajar */
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 10px;
  }

  .footer-left {
    flex: 1;
    min-width: 100px;
    max-width: 30.33%; /* opsional, biar proporsional */
    text-align: left;
    padding: 0;
  }
  .footer-center {
    flex: 1;
    min-width: 100px;
    max-width: 30.33%; /* opsional, biar proporsional */
    text-align: center;
    padding: 0;
  }
  .footer-right {
    flex: 1;
    min-width: 100px;
    max-width: 30.33%; /* opsional, biar proporsional */
    text-align: right;
    padding: 0;
  }

  .footer-left h3,
  .footer-right h3 {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .footer-left p {
    font-size: 8px;
    line-height: 1.4;
  }
  .footer-right p,
  .footer-center p {
    font-size: 11px;
    line-height: 1.4;
  }

  .footer-center img.footer-logo {
    width: 80px;
    margin-bottom: 5px;
  }

  .social-icons-grid {
    grid-template-columns: repeat(3, 26px);
    grid-gap: 6px;
    justify-content: flex-start;
    margin-top: 6px;
  }

  .social-icons-grid img {
    width: 26px;
    height: 26px;
  }

  .footer-bottom {
    font-size: 10px;
    text-align: center;
    padding: 0 10px;
  }
  .kontak-hero {
    padding: 200px 20px 60px;
  }

  .kontak-hero h1 {
    font-size: 27px;
    margin-top: -100px;
  }

  .hiasan-1 {
    width: 100%;
    top: 0;
    left: 0;
  }
}
html,
body {
  overflow-x: hidden;
}
