/* Cards row */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 14px;
}
.contact-card {
  background: #fff;
  border: 1px solid #e9edf4;
  border-radius: 18px;
  padding: 22px;
  text-align: left;
  box-shadow: 0 6px 24px rgba(22, 26, 33, 0.06);
}

.contact-badge {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 14px;
}
.contact-ic {
  width: 28px; height: 28px; color: currentColor;
}

/* badges */
.badge-blue   { background: #e9f0ff; color: #2f6af3; }
.badge-green  { background: #e9f9ef; color: #12a150; }
.badge-purple { background: #f1e9ff; color: #7a3df0; }
.badge-orange { background: #fff1df; color: #f08a24; }

.contact-title {
  font-size: 18px;
  font-weight: 900;
  margin: 2px 0 6px;
  color: #0b0c0e;
}
.contact-text {
  color: #6a7078;
  font-weight: 600;
  margin: 0 0 6px;
}
.contact-accent a,
.contact-accent {
  color: #2f6af3;
  font-weight: 800;
  text-decoration: none;
}
.contact-accent-warn { color: #d46a11; }

/* Responsive */
@media (max-width: 1100px) {
  .contact-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .contact-cards { grid-template-columns: 1fr; }
}
/* ===== Contacts: Office + Map ===== */
.office {
  background: #f6f7fb;
  padding: 28px 0 64px;
}

.office-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.office-card {
  background: #fff;
  border: 1px solid #e9edf4;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(22,26,33,0.06);
  padding: 22px;
}

.office-title {
  font-weight: 900;
  font-size: clamp(20px, 2.4vw, 32px);
  margin: 2px 0 16px;
  color: #0b0c0e;
}

.office-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.office-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: start;
}

.office-heading {
  margin: 2px 0 6px;
  font-weight: 900;
  font-size: 17px;
  color: #0b0c0e;
}

.office-text {
  margin: 0;
  color: #58606a;
  font-weight: 600;
  line-height: 1.6;
}
.office-text a { color: #2f6af3; text-decoration: none; font-weight: 800; }
.office-text a:hover { text-decoration: underline; }

/* Map */
.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;   /* адаптивная высота */
  border-radius: 14px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px #e9edf4;
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive */
@media (max-width: 980px) {
  .office-grid { grid-template-columns: 1fr; }
}
