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

.contact-page {
  background: #e8edf3;
  overflow-x: hidden;

  margin-bottom: 0;
  padding-bottom: 0;
}

/* HERO */
.contact-hero {
  position: relative;
  padding: 45px 0 70px;
  background: #eef1f2;
  overflow: hidden;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;

  background: url("/assets/images/local.png")
              center center / cover no-repeat;

  opacity: 0.18;
  z-index: 1;
}

.contact-hero .container {
  position: relative;
  z-index: 2;
}

/* =========================
   LAYOUT
========================= */

.contact-layout {
  display: flex;

  justify-content: center;

  align-items: flex-start;

  gap: 30px;
}

/* =========================
   FORM CARD
========================= */

.contact-form-card {
  width: 100%;
  max-width: 700px;

  background: #ffffff;

  border-radius: 10px;

  padding: 30px;

  border: 1px solid #ececec;

  box-shadow: 0 10px 28px rgba(0,0,0,0.10);
}

.contact-badge {
  display: inline-block;

  padding: 6px 12px;

  border-radius: 20px;

  background: #f0f9f4;

  color: #2f9e44;

  font-size: 12px;
  font-weight: 700;

  margin-bottom: 16px;
}

.contact-title {
  font-size: 28px;

  font-weight: 800;

  color: #2f9e44;

  margin-bottom: 10px;
}

.contact-subtitle {
  color: #777;

  font-size: 14px;

  margin-bottom: 24px;
}

/* FORM */

.contact-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;

  margin-bottom: 7px;

  font-size: 13px;

  font-weight: 700;

  color: #333;
}

.field-with-icon {
  position: relative;
}

.field-icon {
  position: absolute;

  left: 12px;
  top: 50%;

  transform: translateY(-50%);

  color: #7a7a7a;
}

.field-with-icon--textarea .field-icon {
  top: 18px;

  transform: none;
}

.form-group input,
.form-group textarea {
  width: 100%;

  border: 1px solid #d6d6d6;

  border-radius: 6px;

  background: #fafafa;

  padding: 12px 14px 12px 42px;

  font-size: 14px;

  outline: none;

  transition: 0.3s;
}

.form-group textarea {
  min-height: 120px;

  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #2f9e44;

  background: #fff;

  box-shadow: 0 0 0 3px rgba(47,158,68,0.08);
}

/* BUTTON */

.contact-submit-btn {
  width: 100%;

  height: 46px;

  border: none;

  border-radius: 6px;

  background: #2f9e44;

  color: #fff;

  font-size: 14px;
  font-weight: 700;

  cursor: pointer;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  transition: 0.3s;
}

.contact-submit-btn:hover {
  background: #25853a;

  transform: translateY(-2px);
}

/* =========================
   INFO CARD
========================= */

.contact-info-card {
  width: 340px;

  flex-shrink: 0;

  background: #ffffff;

  border-radius: 10px;

  padding: 28px 24px;

  border: 1px solid #ececec;

  box-shadow: 0 10px 28px rgba(0,0,0,0.10);
}

.contact-info-card h2 {
  font-size: 22px;

  font-weight: 800;

  color: #2f9e44;

  margin-bottom: 26px;
}

.contact-info-item {
  display: flex;

  align-items: flex-start;

  gap: 14px;

  margin-bottom: 22px;
}

.info-icon {
  width: 36px;
  height: 36px;

  border-radius: 50%;

  background: #eef3ff;

  color: #2a67ff;

  display: flex;

  align-items: center;
  justify-content: center;
}

.info-content h3 {
  font-size: 14px;

  color: #2f9e44;

  margin-bottom: 5px;
}

.info-content p {
  font-size: 13px;

  color: #777;

  line-height: 1.6;

  margin: 0 0 4px;
}

.info-content small {
  color: #999;

  font-size: 12px;
}

/* =========================
   CTA SECTION
========================= */

.contact-cta-section {
  padding: 80px 0 40px;

  margin-bottom: 0 !important;
}

.contact-cta-box {
  max-width: 760px;

  margin: 0 auto;

  text-align: center;
}

.contact-cta-box h2 {
  font-size: 38px;

  font-weight: 800;

  color: #2f9e44;

  margin-bottom: 20px;
}

.contact-cta-box p {
  font-size: 15px;

  line-height: 1.9;

  color: #666;

  margin-bottom: 30px;
}

.contact-cta-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 14px 34px;

  border: 2px solid #2f9e44;

  border-radius: 6px;

  background: transparent;

  color: #2f9e44;

  font-size: 15px;
  font-weight: 700;

  transition: 0.3s;
}

.contact-cta-btn:hover {
  background: #2f9e44;

  color: #fff;

  transform: translateY(-2px);
}

/* =========================
   REMOVE SPACE BEFORE FOOTER
========================= */

.site-footer {
  margin-top: 0 !important;
}

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

@media (max-width: 992px) {

  .contact-layout {
    flex-direction: column;

    align-items: center;
  }

  .contact-form-card,
  .contact-info-card {
    width: 100%;
    max-width: 700px;
  }

}

@media (max-width: 768px) {

  .contact-row {
    grid-template-columns: 1fr;
  }

  .contact-title {
    font-size: 22px;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 22px;
  }

  .contact-cta-box h2 {
    font-size: 28px;
  }

}