@import url('https://fonts.cdnfonts.com/css/helvetica-neue');

*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
  margin: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  overflow-x: hidden;
}

.topbar-nav-left {
  position: absolute; /* Agar bisa menempel di pojok */
  top: 20px; /* Jarak dari atas */
  left: 20px; /* Jarak dari kiri */
  z-index: 1000; /* Supaya tidak tertimpa elemen lain */
}

.topbar-company-logo {
  width: 200px; /* Ubah sesuai ukuran yang diinginkan */
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.contact-section {
  padding: 80px 20px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

/* LEFT SIDE */
.contact-info {
  flex: 1 1 45%;
}

.section-title {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: bold;
}

.highlight {
  color: #0072B1;
}

.section-subtitle {
  color: #444;
  font-size: 18px;
  margin-bottom: 30px;
}

.info-blocks {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.icon {
  font-size: 24px;
  margin-top: 2px;
}

.info-title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 5px;
}

/* SOCIAL ICONS */
.social-icons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eeeeee;
  border: 2px solid #eeeeee;
  transition: background-color 0.3s;
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.social-icon:hover {
  background-color: #0072B1;
  border-color: #0072B1;
}

/* LOGO BAWAH */
.logo-bawah {
  margin-top: 40px;
  text-align: left;
}

.logo-bawah img {
  width: 240px;
  height: auto;
  opacity: 1;
}

/* FORM */
.contact-form {
  flex: 1 1 45%;
  background: #f4f4f4;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #ddd;
}

.contact-form h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  color: #1a1a1a;
  font-size: 15px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0072B1;
  box-shadow: 0 0 0 2px #0072b150;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #0072B1;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #005f91;
}

.contact-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  color: #1a1a1a;
  font-size: 15px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form select:focus {
  outline: none;
  border-color: #0072B1;
  box-shadow: 0 0 0 2px #0072b150;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .grid {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    flex: 1 1 100%;
  }

  .logo-bawah {
    text-align: center;
  }
}
