/* ===== CONTACT HERO SIMPLE ===== */

.contact-hero-simple {
  background: #ffffff;
  padding: 80px 0 0;
  text-align: center;
}

.contact-hero-simple-inner {
  max-width: 640px;
  margin: 0 auto 32px;
}

.contact-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b7280;
  border: 1px solid #e5e7eb;
  margin-bottom: 10px;
}

.contact-hero-simple h1 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: #111827;
  margin-bottom: 18px;
}

/* row info telp + email */

.contact-hero-columns {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 22px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f9fafb;
}

.contact-hero-col {
  text-align: left;
  min-width: 150px;
}

.contact-hero-label {
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 2px;
}

.contact-hero-value {
  font-size: 14px;
  color: #111827;
  font-weight: 500;
}

/* separator mirip panah tipis */

.contact-hero-separator {
  position: relative;
  width: 22px;
  height: 20px;
}

.contact-hero-separator::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 22px;
  background: linear-gradient(to bottom, #e5e7eb, #d1d5db);
  transform: translate(-50%, -50%) rotate(18deg);
}

/* Tombol ke WhatsApp */

.contact-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #f15a29, #c7471f);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.contact-hero-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
}

/* Gambar bawah */

.contact-hero-image-wrap {
  margin-top: 24px;
}

.contact-hero-image {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  display: block;
}

/* Scroll reveal */

.contact-hero-simple-inner,
.contact-hero-image-wrap {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.35s ease-out, transform 0.35s ease-out;
}

.contact-section-visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 640px) {
  .contact-hero-simple {
    padding-top: 64px;
  }

  .contact-hero-columns {
    flex-direction: column;
    gap: 10px;
    padding: 8px 14px;
  }

  .contact-hero-col {
    text-align: center;
  }

  .contact-hero-separator {
    display: none; /* di mobile cukup ditumpuk tanpa separator */
  }
}
