/* ==============================
   RESET
============================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}


/* ==============================
   BODY
============================== */

body {
  font-family: 'Poppins', sans-serif;
  background: #EAF2FB;
  color: #10151C;
  min-height: 100vh;
}


/* ==============================
   NAVBAR
============================== */

.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  height: 68px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  background: #FFFFFF;
  color: #008af7;
  z-index: 9999;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}


/* ==============================
   JUDUL NAVBAR
============================== */

.contact-navbar h1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #008af7;
  white-space: nowrap;
}


/* ==============================
   TOMBOL BACK
============================== */

.back-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: #008af7;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.back-btn:hover {
  opacity: 0.7;
}

.back-btn:active {
  transform: scale(0.88);
}


/* ==============================
   HALAMAN CONTACT
============================== */

.contact-page {
  width: 90%;
  max-width: 420px;
  margin: 0 auto;
  padding: 30px 0 50px;
}

/* ==============================
   CONTACT HERO
============================== */

.contact-hero {
  width: 100%;
  padding: 28px 22px 26px;
  background: #43acff;
  border-radius: 18px;
  text-align: center;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(3, 141, 242, 0.18);
}

.contact-hero-icon {
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
  margin: 0 auto 14px;
}

.contact-hero h2 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.contact-hero p {
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 auto;
  max-width: 330px;
}


/* ==============================
   CONTACT LIST
============================== */

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}

.contact-item {
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  background: #FFFFFF;
  border-radius: 14px;
  text-decoration: none;
  color: #10151C;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.08);
}

.contact-item:active {
  transform: scale(0.98);
}

.contact-item-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: #EAF2FB;
  color: #038DF2;
  font-size: 20px;
}

.contact-item-info {
  flex: 1;
  min-width: 0;
}

.contact-item-info strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #10151C;
  margin-bottom: 2px;
}

.contact-item-info small {
  display: block;
  font-size: 11px;
  color: #8492A6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-arrow {
  font-size: 23px;
  line-height: 1;
  color: #A7B1BE;
  margin-left: auto;
}


/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 480px) {
  .navbar {
    height: 64px;
    padding: 0 5px;
  }

  .contact-navbar h1 {
    font-size: 17px;
  }

  .back-btn {
    width: 38px;
    height: 38px;
  }

  .contact-page {
    width: 90%;
    padding-top: 25px;
  }
}