/* =====================================================================
   STYLE-CONTACTPAGE.CSS — khusus contactpage.php
   (Bukan buat footer contact partial — itu ada di style-base.css)
   Wajib di-load SETELAH style-base.css
   ===================================================================== */

.contact-page {
  padding: 60px 20px;
  background: var(--white);
}

.contact-page h2 {
  text-align: center;
  font-size: 50px;
  font-family: 'Times New Roman', serif;
  margin-bottom: 50px;
}

.contact-container-box {
  max-width: 1200px;
  width: 100%;
  background: var(--sage-200);
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  margin: auto;
  font-family: 'Times New Roman', serif;
  font-size: 20px;
  box-sizing: border-box;
  overflow: hidden;
}

.contact-page-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
}

.contact-form,
.contact-detail {
  flex: 1;
  min-width: 300px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px 20px;
  font-size: 18px;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  font-family: 'Times New Roman', serif;
  box-sizing: border-box;
}

.contact-form textarea {
  height: 220px;
  resize: none;
}

.contact-form button {
  width: 220px;
  padding: 16px;
  background: var(--forest-700);
  color: var(--white);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 22px;
  font-family: 'Times New Roman', serif;
  transition: 0.3s;
}

.contact-form button:hover {
  background: var(--forest-900);
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-detail h3 {
  font-size: 38px;
  margin-bottom: 5px;
}

.contact-detail p {
  font-size: 22px;
  line-height: 1.5;
  word-break: break-word;
  margin: 0;
}

.contact-detail a {
  color: var(--ink);
  text-decoration: none;
}

.contact-detail a:hover {
  text-decoration: underline;
}

.contact-detail i {
  margin-right: 10px;
  font-size: 24px;
}

.contact-detail .contact-map {
  margin-top: 10px;
  display: block;
}

.contact-detail .contact-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 20px;
  box-shadow: none;
  max-width: 100%;
}

/* ================= RESPONSIVE ================= */
@media screen and (max-width: 768px) {
  .contact-page {
    padding: 30px 15px;
  }

  .contact-page h2 {
    font-size: 38px;
    margin-bottom: 30px;
  }

  .contact-container-box {
    padding: 25px 20px;
    border-radius: 20px;
  }

  .contact-page-container {
    flex-direction: column;
    gap: 30px;
  }

  .contact-form,
  .contact-detail {
    width: 100%;
    min-width: 100%;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
    padding: 15px;
  }

  .contact-form textarea {
    height: 180px;
  }

  .contact-form button {
    width: 100%;
    font-size: 20px;
  }

  .contact-detail h3 {
    font-size: 30px;
    text-align: center;
  }

  .contact-detail p {
    font-size: 18px;
    line-height: 1.8;
  }

  .contact-detail i {
    font-size: 20px;
  }

  .contact-detail .contact-map iframe {
    height: 250px;
  }
}
