/* ============================================================
   PROLANDSCAPE — «Контакти»
   Шапка спільна зі сторінкою послуги (service.css).
   ============================================================ */

#contacts {
  padding: 30px 0 100px;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 22px;
  align-items: start;
}

/* ═══════════════════════════════ КОНТАКТИ ═══════════════════════════════ */
.contacts-info {
  display: grid;
  gap: 12px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.22s,
    background 0.22s;
}

a.contact-row:hover {
  transform: translateY(-2px);
  background: var(--glass-hover);
}

.contact-ic {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-ic svg {
  width: 20px;
  height: 20px;
}

.contact-body {
  min-width: 0;
  flex: 1 1 auto;
}

.contact-body strong {
  display: block;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 3px;
  /* довга пошта не має вилазити за картку */
  overflow-wrap: anywhere;
}

.contact-body span {
  display: block;
  font-size: 12.5px;
  color: var(--m);
  line-height: 1.45;
}

/* ── соцмережі ── */
.contact-socials {
  margin-top: 10px;
  padding: 20px 22px;
}

.contact-socials-title {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--m);
  margin-bottom: 14px;
}

.contact-socials-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-social {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}

.contact-social svg {
  width: 20px;
  height: 20px;
}

.contact-social:hover {
  background: var(--green);
  color: var(--cream);
  transform: translateY(-2px);
}

/* ═══════════════════════════════ ФОРМА ═══════════════════════════════ */
.contacts-form {
  padding: 38px 40px;
}

.contacts-form h2 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: var(--ink);
  margin-bottom: 8px;
}

.contacts-form-sub {
  font-size: 14px;
  color: var(--m);
  line-height: 1.7;
  margin-bottom: 26px;
}

.contacts-submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

.contacts-note {
  margin-top: 16px;
  font-size: 11.5px;
  color: var(--m);
  line-height: 1.6;
}

.contacts-note a {
  color: var(--accent);
}

/* ═══════════════════════════════ АДАПТИВ ═══════════════════════════════ */
@media (max-width: 900px) {
  .contacts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .contacts-form {
    padding: 28px 24px;
  }

  .contact-row {
    padding: 16px 18px;
  }
}
