
/* --- Контакты: современный стиль, баланс акцентов, плавность --- */

.contact-header {
  display: flex;
  flex-wrap: wrap;
  color: #232323;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.contact-logo {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 0 6px #fff22b88);
  border-radius: 50%;
  background: #fffde7;
  color: #232323;
  box-shadow: 0 2px 12px #fff22b33;
}
.contact-title {
  font-weight: 900;
  font-size: 1.7rem;
  color: #fff22b;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 8px #fffde7;
}
.contact-city {
  display: flex;
  align-items: center;
  color: #232323;
  font-weight: 800;
  font-size: 1.08rem;
  background: #fffde7;
  border-radius: 18px;
  padding: 6px 18px 6px 12px;
  margin-left: 8px;
  box-shadow: 0 2px 8px #fff22b22;
  transition: box-shadow .2s, background .2s;
}
.contact-city svg {
  margin-right: 8px;
}
.contact-links {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.contact-links > * {
  display: flex;
  align-items: center;
}
.contact-phone {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #232323 !important;
  background: #fffde7;
  font-weight: 800;
  font-size: 1.13rem;
  border-radius: 18px;
  padding: 8px 24px 8px 14px;
  box-shadow: 0 2px 12px #fff22b33;
  transition: box-shadow .2s, background .2s, color .2s;
  border: 1.5px solid #fff22b22;
}
.contact-phone svg {
  margin-right: 10px;
  transition: fill .2s;
}
.contact-phone:hover {
  background: #fff22b;
  color: #232323;
  box-shadow: 0 4px 16px #fff22b55;
}
.contact-phone:hover svg {
  fill: #232323 !important;
}
.contact-telegram {
  display: flex;
  align-items: center;
  text-decoration: none;
  background: #229ED9;
  color: #fff;
  font-weight: 800;
  font-size: 1.13rem;
  border-radius: 18px;
  padding: 8px 24px 8px 14px;
  box-shadow: 0 2px 12px #229ed955;
  transition: box-shadow .2s, background .2s;
  border: 1.5px solid #b6e6fa44;
}
.contact-telegram svg {
  margin-right: 10px;
}
.contact-telegram:hover {
  background: #1b7fc2;
  box-shadow: 0 4px 16px #229ed988;
}
.contact-info {
  font-size: 1.13rem;
  color: #232323;
  border-bottom: 1.5px solid #f0f0f0;
  padding-bottom: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.contact-info b {
  font-weight: 800;
  color: #232323;
}
.contact-form-title {
  font-weight: 800;
  color: #232323;
  letter-spacing: 0.7px;
  text-align: center;
  margin-top: 2.2rem;
  margin-bottom: 1.3rem;
  font-size: 1.18rem;
}
.contact-form .btn {
  background: #fff22b;
  border: none;
  font-weight: 800;
  font-size: 1.13rem;
  color: #232323;
  box-shadow: 0 2px 12px #fff12bd4;
  border-radius: 18px;
  padding: 8px 36px;
  transition: background .2s, box-shadow .2s;
}
.contact-form .btn:hover {
  background: #ffe600;
  box-shadow: 0 4px 16px #fff22b55;
}
