/* ==========================================================================
   contact.css — Halaman Contact
   ========================================================================== */

.contact-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding-top: var(--header-height);
  padding-block: var(--space-10);
  overflow: hidden;
  text-align: center;
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(53, 92, 125, 0.82);
}

.contact-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.contact-hero__inner h1 {
  color: var(--color-white);
  font-size: clamp(2rem, 1.7rem + 1.2vw, 2.75rem);
}

.contact-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
}

.contact-list__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9375rem;
}

.contact-list__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  border-radius: var(--radius-pill);
  background-color: rgba(255, 255, 255, 0.1);
}

.contact-list__icon svg {
  width: 1rem;
  height: 1rem;
  color: var(--color-orange);
}

.contact-hero__cta {
  margin-top: var(--space-6);
}
