.contacts__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.contacts__title {
     font-family: var(--font-sans);
    font-weight: 600;
    font-size: 24px;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--color-primary);
    margin: 0 0 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    -webkit-text-stroke: 0px black;
    text-shadow: none;
}

/* ============================================
   CONTACTS INFO — 3 колонки
   ============================================ */
.contacts-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.contacts-info__item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contacts-info__icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contacts-info__icon-img {
  width: 50px;
  height: 50px;
}

.contacts-info__text {
  display: flex;
  flex-direction: column;
}

.contacts-info__label {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-link-dark-green);
  margin: 0;
}

.contacts-info__value {
  font-size: 14px;
  line-height: 1.5;
  color: #666666;
  margin: 0;
}

.contacts-info__value--muted {
  color: #888;
  font-size: 13px;
}

.contacts-info__phone-link {
  color: #666666;
  text-decoration: none;
}

.contacts-info__phone-link:hover {
  color: var(--color-link-dark-green);
}

.contacts-info__email-link {
  color: #666666;
  text-decoration: none;
}

.contacts-info__email-link:hover {
  text-decoration: underline;
}

/* ============================================
   DIVIDER
   ============================================ */
.contacts__divider {
  width: 100%;
  height: 1px;
  background: #d9d9d9;
  margin-bottom: 30px;
}

/* ============================================
   CONTACTS DETAIL — юридические данные + карта
   ============================================ */
.contacts-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 25px;
}

.contacts-detail__legal {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contacts-detail__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #666666;
}

.contacts-detail__text strong {
  font-weight: 600;
}

.contacts-detail__bank {
  margin-top: 15px;
}

.contacts-detail__map {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contacts-detail__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================
   КНОПКА
   ============================================ */
.contacts-detail__btn {
  margin-top: 20px;
  width: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 55px;
  gap: 15px;
  background: linear-gradient(106.95deg, #358393 24.64%, #2A6D7C 77.55%);
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.contacts-detail__btn:hover {
  background: #1d5a68;
}

/* ============================================
   ПРОЕЗД
   ============================================ */
.contacts-route {
  text-align: right;
  padding: 10px 0 0;
}

.contacts-route__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #666666;
}

/* ============================================
   АДАПТИВ
   ============================================ */
@media (max-width: 1024px) {
  .contacts-detail {
    grid-template-columns: 1fr;
    width: 90%;
    margin: auto;
  }

  .contacts-detail__legal {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
  }

  .contacts-detail-box {
    max-width: 60%;
  }

  .button-box {
    width: 40%;
  }

  .contacts-detail__map {
    width: 90%;
    height: 430px;
    margin: auto;
  }

  .contacts-route {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .contacts__title {
    font-size: 20px;
  }

  .contacts-info {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .contacts-info__item {
    flex-direction: row;
  }

  .contacts-info__label {
    font-size: 20px;
  }

  .contacts-route__text {
    font-size: 13px;
  }
}

@media (max-width: 667px) {
.contacts-info {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
  .contacts-detail__legal {
    flex-direction: column;
  }

  .contacts-detail-box {
    max-width: 100%;
  }

  .button-box {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .contacts-info__icon {
    width: 40px;
    height: 40px;
  }

  .contacts-info__icon-img {
    width: 40px;
    height: 40px;
  }

  .contacts-detail {
    width: 100%;
  }

  .contacts-detail__map {
    width: 100%;
    height: 300px;
  }

  .contacts-route {
    text-align: left;
  }
}

canvas {
height:430px!important;
}