:root {
  --contact-ink: #102817;
  --contact-muted: #587064;
  --contact-green: #1fa052;
  --contact-deep: #0b3b22;
  --contact-line: rgba(28, 128, 66, .16);
  --contact-soft: rgba(226, 246, 232, .82);
}

body.contact-page {
  background:
    radial-gradient(circle at 12% 12%, rgba(105, 232, 139, .20), transparent 30%),
    linear-gradient(180deg, #f5fbf6 0%, #e8f6ec 52%, #d8eedf 100%);
  color: var(--contact-ink);
}

.contact-main {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 56px;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .65fr);
  gap: 18px;
  align-items: stretch;
  margin: 24px 0 18px;
}

.contact-hero__copy,
.contact-hero__panel,
.contact-form-card,
.contact-info-card {
  border: 1px solid var(--contact-line);
  box-shadow: 0 24px 70px rgba(17, 74, 37, .10);
}

.contact-hero__copy {
  min-height: 380px;
  border-radius: 28px;
  padding: clamp(28px, 5vw, 56px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .74)),
    url("../img/blog-real/faydali-bitkiler.webp") center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-eyebrow,
.section-heading span,
.contact-info-card span {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 9px 14px;
  background: #e0f8e7;
  color: #0a7d3a;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-hero h1 {
  max-width: 760px;
  margin: 18px 0 14px;
  font-size: clamp(34px, 5.2vw, 64px);
  line-height: .98;
  letter-spacing: 0;
  color: #0b321d;
}

.contact-hero p,
.section-heading p,
.contact-info-card p {
  color: var(--contact-muted);
  line-height: 1.7;
}

.contact-hero__copy > p {
  max-width: 650px;
  font-size: 17px;
}

.contact-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-metrics span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(19, 121, 54, .12);
  color: #375a45;
  font-weight: 700;
}

.contact-metrics strong {
  color: #0b7c3c;
}

.contact-hero__panel {
  border-radius: 28px;
  padding: 30px;
  background: linear-gradient(160deg, #0d3d24, #1c8144);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 380px;
  overflow: hidden;
  position: relative;
}

.contact-hero__panel:before {
  content: "";
  position: absolute;
  inset: -30% -20% auto auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(157, 255, 179, .22);
  filter: blur(10px);
}

.contact-orbit {
  width: 74px;
  height: 74px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .20);
  font-size: 34px;
  margin-bottom: auto;
}

.contact-hero__panel h2 {
  margin: 24px 0 10px;
  color: #fff;
}

.contact-hero__panel p {
  color: rgba(255, 255, 255, .82);
}

.contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.contact-pills span {
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .14);
  font-weight: 800;
  font-size: 13px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
}

.contact-form-card,
.contact-info-card {
  border-radius: 24px;
  background: rgba(255, 255, 255, .84);
  backdrop-filter: blur(18px);
}

.contact-form-card {
  padding: clamp(22px, 4vw, 36px);
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 12px 0 6px;
  font-size: clamp(28px, 3vw, 42px);
  color: #102817;
}

#contactStatus {
  border-radius: 16px;
  border: 1px solid var(--contact-line);
  margin-bottom: 18px;
}

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

.form-row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-row label,
.consent-line {
  display: block;
  color: #153a24;
  font-weight: 850;
  margin-bottom: 8px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(19, 94, 48, .18);
  background: rgba(255, 255, 255, .92);
  color: #143624;
  border-radius: 17px;
  padding: 15px 16px;
  outline: 0;
  transition: .18s ease;
}

.form-row textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(31, 160, 82, .62);
  box-shadow: 0 0 0 5px rgba(31, 160, 82, .12);
}

.consent-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
  margin: 4px 0 18px;
}

.consent-line input {
  margin-top: 4px;
}

.contact-submit {
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #32c966, #14863f);
  color: #fff;
  font-weight: 950;
  box-shadow: 0 16px 36px rgba(25, 149, 69, .22);
}

.contact-side {
  display: grid;
  gap: 14px;
}

.contact-info-card {
  padding: 24px;
}

.contact-info-card h3 {
  margin: 14px 0 8px;
  color: #12331f;
  font-size: 22px;
  line-height: 1.2;
}

.contact-info-card--green {
  background: linear-gradient(155deg, #0e3b24, #1d8546);
  color: #fff;
}

.contact-info-card--green span {
  background: rgba(255, 255, 255, .14);
  color: #dfffe7;
}

.contact-info-card--green h3 {
  color: #fff;
}

.contact-info-card--green p {
  color: rgba(255, 255, 255, .80);
}

@media (max-width: 980px) {
  .contact-hero,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero__copy,
  .contact-hero__panel {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .contact-main {
    width: min(100% - 24px, 1180px);
  }

  .contact-hero h1 {
    font-size: 34px;
  }

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

  .contact-metrics {
    display: grid;
  }
}
