/* ── SECTION: contact-body ── */
.contact-sections { padding-bottom: 1px; }

.contact-body {
  padding: 5rem 1.5rem;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 3.5rem;
  max-width: 1200px; margin: 0 auto;
}
.contact-info h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.75rem; }
.c-items { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 2.5rem; }
.c-item {
  display: flex; align-items: flex-start; gap: 1rem;
  border-radius: 14px; padding: 1.1rem 1.25rem; transition: all .22s;
}
.c-ico-wrap {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 11px; display: flex; align-items: center; justify-content: center;
}
.c-item strong { display: block; font-size: .87rem; margin-bottom: .2rem; }
.c-item p { font-size: .82rem; line-height: 1.5; margin: 0; }
.contact-socials h4 { font-size: .76rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1rem; }
.soc-row { display: flex; gap: .7rem; }
.soc-btn {
  width: 44px; height: 44px;
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .22s;
}

.contact-form-box { border-radius: 24px; padding: 2.5rem; }
.contact-form-box h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.fg { display: flex; flex-direction: column; gap: .4rem; margin-bottom: .3rem; }
.fg label { font-size: .78rem; font-weight: 700; letter-spacing: .3px; }
.fg input, .fg select, .fg textarea {
  border-radius: 12px; padding: 11px 14px;
  font-family: 'Quicksand', sans-serif; font-size: .9rem; font-weight: 500;
  transition: all .22s; outline: none; width: 100%;
}
.fg textarea { min-height: 130px; resize: vertical; }
.form-submit {
  width: 100%; margin-top: 1.25rem;
  border: none; border-radius: 50px;
  padding: 14px 32px; font-family: 'Quicksand', sans-serif; font-size: .95rem; font-weight: 700;
  cursor: pointer; transition: all .25s; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { transform: translateY(-2px); }

.map-section { padding: 0 1.5rem 5rem; max-width: 1200px; margin: 0 auto; }
.map-section h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.25rem; display: flex; align-items: center; gap: 8px; }
.map-box { border-radius: 20px; overflow: hidden; }
.map-box iframe { width: 100%; height: 380px; border: 0; display: block; }

@media(max-width:900px) {
  .contact-body { grid-template-columns: 1fr; padding: 3.5rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
}
