@font-face {
  font-family: 'Resoft';
  src: url('../../assets/fonts/Resoft.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.contact-section h1,
.contact-section h2,
.contact-section h3 {
  font-family: 'Resoft', sans-serif !important;
}
/* ===============================
   CONTACT MODERN SECTION
================================ */

.contact-section {
  max-width: 1200px;
  margin: 120px auto;
  padding: 0 20px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}

/* ================= LEFT ================= */

.contact-left {
  padding: 60px 50px;
  color: #fff;

  background:
    linear-gradient(rgba(15,23,42,.75), rgba(15,23,42,.85)),
    url("../../assets/img/bg/bg-hero.webp"); /* ganti gambar */
  background-size: cover;
  background-position: center;
}

.contact-label {
  color: #fde047;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .15em;
}

.contact-left h2 {
  font-size: 36px;
  margin: 18px 0;
  line-height: 1.2;
}

.contact-left p {
  color: #e5e7eb;
  margin-bottom: 30px;
  max-width: 420px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: center;
}

.contact-item .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fde047;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-item strong {
  display: block;
  font-size: 15px;
}

.contact-item span {
  font-size: 14px;
  color: #e5e7eb;
}

/* ================= RIGHT ================= */

.contact-right {
  background: #f3f4f6;
  padding: 60px 50px;
}

.contact-right h3 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #1e293b;
}

/* FORM */

.modern-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.modern-form input,
.modern-form textarea {
  border: none;
  border-radius: 10px;
  padding: 14px;
  background: #e5e7eb;
  font-size: 15px;
  outline: none;
}

.modern-form textarea {
  resize: none;
}

.send-btn {
  margin-top: 10px;
  border: none;
  padding: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg,#334155,#64748b);
  color: white;
  font-weight: 600;
  letter-spacing: .15em;
  cursor: pointer;
  transition: .25s;
}

.send-btn:hover {
  transform: translateY(-2px);
  background: #1e293b;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-left,
  .contact-right {
    padding: 40px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* =================================
   CONTACT LEFT RESPONSIVE TEXT
================================= */
@media (max-width: 768px) {

  .contact-left {
    text-align: left;
  }

  /* label kecil */
  .contact-label {
    font-size: 12px;
    letter-spacing: .12em;
  }

  /* judul utama */
  .contact-left h2 {
    font-size: clamp(20px, 6vw, 26px);
    line-height: 1.3;
    margin: 14px 0;
  }

  /* deskripsi */
  .contact-left p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 auto 24px;
    max-width: 90%;
  }

  /* list kontak */
  .contact-item strong {
    font-size: 14px;
  }

  .contact-item span {
    font-size: 13px;
  }

  /* icon biar seimbang */
  .contact-item .icon {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

}


