/* ===== CONTACT PAGE ===== */

.contact-hero {
  background: #f4efff;          /* light lavender */
  padding: 48px 0 110px;
  position: relative;
  overflow: hidden;
}

/* angled mint shape bottom-left */
.contact-hero::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 260px;
  height: 80px;
  background: #d4f4ea;
  transform: translateY(45%) skewX(-14deg);
}

/* angled mint shape top-right */
.contact-hero::after {
  content: "";
  position: absolute;
  right: -70px;
  top: 34px;
  width: 260px;
  height: 80px;
  background: #d4f4ea;
  transform: skewX(-18deg);
}

.contact-breadcrumb {
  font-size: 14px;
  color: #707070;
  margin-bottom: 18px;
}

.contact-title {
  font-size: 32px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 8px;
}

.contact-subtitle {
  font-size: 16px;
  color: #555555;
}

/* wrapper for the two cards */
.contact-section-wrapper {
  background: #ffffff;
  padding-bottom: 80px;
  margin-top: 100px;
}

/* row with both cards */
.contact-row {
  margin-top: -80px;            /* pulls cards up into hero */
}

/* LEFT: info card */
.contact-info-card {
  background: #fafafa;
  border-radius: 26px;
  padding: 32px 40px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
}

.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #9157ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9157ff;
  font-size: 18px;
}

.contact-info-text {
  font-size: 15px;
  color: #222222;
}

/* RIGHT: form card */
.contact-form-card {
  background: #f8f8fa;
  border-radius: 26px;
  padding: 32px 40px 40px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
  position: relative;
}

/* lift the form card slightly higher than the info card */
@media (min-width: 992px) {
  .contact-form-card {
    margin-top: -40px;
  }
}

.contact-label {
  font-size: 14px;
  font-weight: 500;
  color: #222222;
}

/* pill input style */
.contact-input {
  border-radius: 999px;
  border: 1px solid #dedede;
  padding: 11px 20px;
  font-size: 14px;
  height: auto;
  box-shadow: none;
}

.contact-textarea {
  border-radius: 20px;
  border: 1px solid #dedede;
  padding: 12px 20px;
  font-size: 14px;
  min-height: 130px;
  resize: vertical;
  box-shadow: none;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #b5b5b5;
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: #9157ff;
  box-shadow: 0 0 0 0.12rem rgba(145, 87, 255, 0.2);
}

/* submit button (matches your other green buttons) */
.contact-submit-btn {
  border-radius: 999px;
  background: #28c76f;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  padding: 11px 60px;
  border: none;
  box-shadow: 0 14px 35px rgba(39, 180, 96, 0.4);
}

.contact-submit-btn:hover {
  background: #1ea853;
  color: #ffffff;
}

/* responsive tweaks */
@media (max-width: 991.98px) {
  .contact-hero {
    padding: 32px 0 90px;
  }

  .contact-row {
    margin-top: -60px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 24px 22px;
  }
}
