/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-page {
  padding: 80px 0;
  background-color: #f4f7f5;
}

/* =========================
   HEADER
========================= */
.contact-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-header h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  margin-bottom: 12px;
  color: #1f3d2b;
}

.contact-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #4f7c63;
  max-width: 520px;
  margin: 0 auto;
}

/* =========================
   CARD WRAPPER
========================= */
.contact-card-wrapper {
  display: flex;
  justify-content: center;
}

/* =========================
   CONTACT CARD
========================= */
.contact-card {
  width: 100%;
  max-width: 420px;
  background-color: #ffffff;
  border-radius: 24px;
  padding: 36px 32px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* =========================
   FORM GROUP
========================= */
.contact-card .form-group {
  margin-bottom: 18px;
}

.contact-card label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1f3d2b;
}

.contact-card input,
.contact-card select {
  width: 90%;
  padding: 12px 14px;
  font-size: 0.9rem;
  border-radius: 10px;
  border: 1px solid #ccd5cf;
  outline: none;
}

.contact-card input:focus,
.contact-card select:focus {
  border-color: #4f7c63;
}

/* =========================
   PEOPLE GRID
========================= */
.people-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* =========================
   WHATSAPP BUTTON
========================= */
.btn-whatsapp {
  width: 100%;
  margin-top: 24px;
  padding: 14px;

  background-color: #25d366;
  color: #ffffff;

  border: none;
  border-radius: 40px;

  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;

  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
}

.btn-whatsapp:hover {
  background-color: #1ebe5d;
  transform: translateY(-2px);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 480px) {
  .contact-page {
    padding: 60px 0;
  }

  .contact-header h1 {
    font-size: 2rem;
  }

  .contact-card {
    padding: 28px 22px;
  }
}
