/* Карта: контейнер на всю ширину */
.section-map { padding: 3rem 0; }

.map-wrapper {
  height: 500px;
  border: 2px solid #e0e0e0 !important;
  transition: box-shadow 0.3s ease;
}
.map-wrapper:hover { box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.08); }

.info-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.08);
  background: #ffffff !important;
}

.icon-circle {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 1.1rem; flex-shrink: 0;
}

/* Адаптив */
@media (max-width: 767px) {
  .map-wrapper { height: 350px !important; }
  .btn-lg { width: 100%; margin-bottom: 0.5rem; }
  .d-flex.justify-content-center.gap-3 { flex-direction: column; }
}}