/**************************HEADER STYLES**************************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: #ffffff;
}

.header {
    background-color: #7faaff;
    color: white;
    text-align: center;
    padding: 80px 20px;
    border-radius: 50px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    /* Tambahkan ini */
    z-index: 2;
}

.header h2 {
    margin-bottom: 5px;
    font-weight: bold;
}

/********************************NAVBAR STYLES********************************/
.navbar-nav {
    background: #ffffff;
    border-radius: 50px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #c0c0c0;
}

.navbar-nav .nav-link {
    background: transparent;
    border-radius: 50px;
    padding: 8px 24px;
    margin: 0;
    transition: background 0.2s, color 0.2s;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    background: #85A8F8;
    color: #fff !important;
}

.nav-link.active {
  color: #0d3b66 !important; /* biru tua */
  font-weight: bold;
}

/*********************************CONTACT STYLES*********************************/
.contact-container {
    background-color: rgba(233, 238, 247, 0.9);
    border-radius: 12px;
    overflow: hidden;
    max-width: 900px;
    margin: 30px auto;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    margin-top: -3%;
    z-index: 3;
    justify-content: center;
}

.contact-content {
    display: flex;
    justify-content: center;
    padding-top:  40px;
    padding-left: 50px;
    gap: 70px;
    flex-wrap: wrap;
}

.contact-column {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}

.contact-item .icon {
    font-size: 24px;
    margin-top: 4px;
}

.contact-item a {
    color: #000;
    text-decoration: underline;
}

address {
    font-style: normal;
    line-height: 1.5;
}

/*********************************MAP STYLES*********************************/
.map-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.map-container iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0;
}
