.contacts-header {
  margin-bottom: 20px;
}

.contacts-header h1 {
  font-size: 2rem;
  margin-bottom: 5px;
}

.contacts-subtitle {
  color: #777;
  font-size: 0.95rem;
}

.contacts-address {
  background: #f5f7f9;
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 15px;
}

.contact-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  border: 1px solid #eee;
  transition: all .2s ease;
}

.contact-card:hover {
  border-color: #ddd;
  transform: translateY(-2px);
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #222;
}

.contact-card a {
  display: block;
  font-size: 0.9rem;
  color: #444;
  text-decoration: none;
  margin-bottom: 6px;
}

.contact-card a:hover {
  color: #028fa3;
}


.contact-card a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #444;
  text-decoration: none;
  margin-bottom: 8px;
}

.contact-card a:hover {
  color: #028fa3;
}

/* SVG контейнер */
.contact-card .icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(2, 143, 163, 0.08);
}

/* сами SVG */
.contact-card svg {
  width: 18px;
  height: 18px;
  stroke: #028fa3;
  stroke-width: 1.8;
  fill: none;
}

/* hover эффект */
.contact-card a:hover .icon {
  background: rgba(2, 143, 163, 0.15);
}

.icon.phone {
  background: rgba(2, 143, 163, 0.08);
}

.icon.mobile {
  background: rgba(2, 143, 163, 0.12);
}

.icon.mail {
  background: rgba(255, 107, 107, 0.08);
}

.contact-card a:hover .icon.phone {
  background: rgba(2, 143, 163, 0.2);
}

.contact-card a:hover .icon.mail {
  background: rgba(255, 107, 107, 0.2);
}


.reviews-block {
  margin-top: 35px;
  padding: 25px;
  border-radius: 12px;
  background: linear-gradient(135deg, #028fa3, #35ac89);
  color: #fff;
  text-align: center;
}

.reviews-block h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.reviews-text {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 15px;
}

.reviews-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.reviews-links a {
  background: #fff;
  color: #028fa3;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.reviews-links a:hover {
  background: #f1f1f1;
  transform: translateY(-2px);
}

.map-container{border-radius:12px;margin-top:25px;overflow:hidden;margin-bottom:30px;position:relative}.map-container iframe{width:100%;height:450px;border:none}@media (max-width:768px){.map-container iframe{height:350px}}@media (max-width:480px){.map-container iframe{height:300px}}