/* Блок контактов */
.contacts-section {
  max-width: 1465px;
  margin: 60px auto;
  padding: 0 20px;
}

/* Три колонки в ряд */
.contacts-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

/* Левая колонка */
.contacts-col {
  flex: 1;
  min-width: 280px;
}

/* Заголовок */
.contacts-title {
  color: #2e5065;
  font-size: clamp(32px, 6vw, 60px);
  font-family: Montserrat;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 30px;
}

/* Телефон */
.contact-phone {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-phone img {
  width: 33px;
  height: 30px;
}

.contact-phone span {
  color: #2e5065;
  font-size: 22px;
  font-family: Montserrat;
  font-weight: 500;
  line-height: 30px;
}

/* Email */
.contact-email {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}

.contact-email img {
  width: 33px;
  height: 27px;
}

.contact-email span {
  color: #2e5065;
  font-size: 22px;
  font-family: Montserrat;
  font-weight: 500;
  line-height: 30px;
}

/* Режим работы */
.work-hours {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.work-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.work-day {
  color: #0095dd;
  font-size: 22px;
  font-family: Montserrat;
  font-weight: 800;
  line-height: 30px;
}

.work-day.sunday {
  color: #fd6d00;
}

.work-time {
  color: #2e5065;
  font-size: 22px;
  font-family: Montserrat;
  font-weight: 500;
  line-height: 30px;
}

/* Правая колонка - адрес и проезд */
.address-block {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

.address-icon {
  width: 46px;
  height: 60px;
  flex-shrink: 0;
}

.address-text {
  color: #2e5065;
  font-size: clamp(20px, 3vw, 28px);
  font-family: Montserrat;
  font-weight: 500;
  line-height: 1.3;
}

.travel-title {
  color: #2e5065;
  font-size: 22px;
  font-family: Montserrat;
  font-weight: 500;
  line-height: 38px;
  margin-bottom: 20px;
}

.travel-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.btn-metro,
.btn-car {
  background: transparent;
  border-radius: 50px;
  padding: 10px 24px;
  min-width: 152px;
  height: 42px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 22px;
  font-family: Montserrat;
  font-weight: 700;
  line-height: 30px;
  text-decoration: none;
}

.btn-metro {
  background: #fd6d00;
  color: white;
}

.btn-metro span {
  color: white;
}

.btn-metro:hover {
  background: #e05e00;
}

.btn-car {
  background: transparent;
  border: 3px solid #fd6d00;
  color: #fd6d00;
}

.btn-car span {
  color: #fd6d00;
}

.btn-car:hover {
  background: #fd6d00;
}

.btn-car:hover span {
  color: white;
}

/* Активная кнопка */
.btn-metro.active {
  background: #fd6d00;
  color: white;
  border: none;
}

.btn-car.active {
  background: #fd6d00;
  color: white;
  border: none;
}

.btn-car.active span {
  color: white;
}

/* Контент проезда */
.travel-content {
  margin-top: 20px;
}

.walk-text {
  color: #2e5065;
  font-size: 22px;
  font-family: Montserrat;
  font-weight: 500;
  line-height: 30px;
  max-width: 360px;
}

.car-link {
  display: inline-block;
  color: #0090d2;
  font-size: 22px;
  font-family: Montserrat;
  font-weight: 500;
  line-height: 30px;
  text-decoration: underline;
  cursor: pointer;
}

.car-link:hover {
  color: #fd6d00;
}

.hidden {
  display: none;
}

/* Средняя колонка - карта */
.map-col {
  flex: 1;
  min-width: 280px;
}

.map-container {
  position: relative;
  width: 100%;
  max-width: 582px;
  margin: 0 auto;
}

.map-bg {
  width: 100%;
  height: auto;
  min-height: 342px;
  background: #d9d9d9;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.map-bg iframe {
  width: 100%;
  height: 342px;
  border: none;
  display: block;
}

/* Адаптивность контактов */
@media (max-width: 1024px) {
  .contacts-row {
    flex-direction: column;
  }

  .map-container {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .contacts-section {
    margin: 40px auto;
  }

  /* Заголовок показываем первым */
  .contacts-title {
    margin-bottom: 20px;
  }

  /* Переставляем порядок колонок */
  .contacts-row {
    display: flex;
    flex-direction: column;
  }

  /* Левая колонка - первая */
  .contacts-col:first-child {
    order: 1;
  }

  /* Правая колонка (адрес) - вторая */
  .contacts-col:nth-child(2) {
    order: 2;
  }

  /* Карта - последняя */
  .map-col {
    order: 3;
    margin-top: 20px;
  }

  .travel-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-metro,
  .btn-car {
    width: 100%;
    max-width: 250px;
  }

  .walk-text,
  .car-link {
    font-size: 18px;
  }

  .contact-phone span,
  .contact-email span,
  .work-day,
  .work-time {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .contacts-title {
    font-size: 40px;
    margin-bottom: 30px;
  }

  .address-text {
    font-size: 20px;
  }

  .travel-title {
    font-size: 18px;
  }

  .btn-metro,
  .btn-car {
    font-size: 16px;
    padding: 8px 16px;
  }
}
