/* === NAVBAR HEADER === */
.navbar .header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.navbar .header-left img {
  width: 60px;
  height: auto;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.navbar .header-titles h1 {
  font-size: 18px;
  font-weight: 500;
  margin-left: -170px;
}

.navbar .header-titles h2 {
  font-size: 15px;
  font-weight: 500;
  margin-left: -170px;
}

/* === HERO PAGE TITLE === */
.page-header {
  background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
  color: var(--white);
  text-align: center;
  padding: 60px 20px;
  margin: 30px 0;
}

/* === TATA LETAK UTAMA (KONTEN UTAMA) === */
.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* ===KOLOM KIRI: INFO HUBUNGI === */
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background-color: #f1f9ff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border-left: 5px solid var(--primary-blue);
}

.info-icon {
  background-color: #eef4f9;
  color: var(--dark-blue);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.info-details h3 {
  font-size: 18px;
  color: var(--black);
  margin-bottom: 5px;
  font-weight: 700;
}

.info-details p,
.info-details a {
  font-size: 15px;
  color: var(--text-gray);
  text-decoration: none;
}

.info-details a:hover {
  color: var(--primary-blue);
  text-decoration: underline;
}

/* SOSIAL MEDIA CARD */
.social-card {
  background-color: var(--white);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.social-card h3 {
  font-size: 18px;
  color: var(--dark-blue);
  margin-bottom: 15px;
  font-weight: 700;
}

.social-links-grid {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 30px;
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition:
    transform 0.3s,
    opacity 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.social-btn.facebook {
  background-color: var(--facebook-color);
}
.social-btn.instagram {
  background-color: var(--instagram-color);
}
.social-btn.youtube {
  background-color: var(--youtube-color);
}

/* === KOLOM KANAN: MAPS === */
.contact-map-panel {
  background-color: var(--white);
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 450px;
}

.map-container {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ddd;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* === RESPONSIVE LAYOUT === */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-map-panel {
    min-height: 350px;
  }
  .navbar .header-left {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .navbar .header-left img {
    width: 50px;
    height: auto;
  }
  .navbar .header-titles h1 {
    margin-left: -280px;
    font-size: 16px;
    font-weight: 400;
  }
  .navbar .header-titles h2 {
    margin-left: -280px;
    font-size: 14px;
    font-weight: 400;
  }
  .page-header {
    height: 270px;
  }
  .page-header h2 {
    font-size: 26px;
    margin: 30px 0;
  }
}

@media (max-width: 480px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-map-panel {
    min-height: 350px;
  }
  .navbar .header-left {
    display: flex;
    align-items: center;
  }
  .navbar .header-left img {
    margin-left: -35px;
    width: 35px;
    height: auto;
  }
  .navbar .header-titles h1 {
    margin-left: -100px;
    font-size: 10px;
    font-weight: 400;
  }
  .navbar .header-titles h2 {
    margin-left: -100px;
    font-size: 9px;
    font-weight: 400;
  }
  .page-header {
    height: 200px;
  }
  .page-header h2 {
    font-size: 24px;
    margin: -5px 0 15px 0;
  }
  .page-header p {
    font-size: 16px;
    margin-top: -30px;
  }
  .bar {
    margin-right: -10px;
  }
}
