/* Общие стили футера */
.footer-bs {
  background-color: #3c3d41;
  padding: 5px 10px 10px 30px;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  font-family: "Roboto Slab", serif;
  text-align: center;
}

h4 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

/* Социальные кнопки */
.social-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-button {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #3c3d41;
  transition: transform 0.3s ease;
}

.social-button img {
  width: 45px;
  height: 45px;
  z-index: 1;
}

.social-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ff4e50, #f9d423);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-button:hover::before {
  opacity: 1;
}

.social-button:hover {
  transform: scale(1.1);
  cursor: pointer;
}

/* Карта */
.map iframe {
  margin-top: 30px;
  width: 100%;
  height: 200px;
  border: 0;
  border-radius: 5px;
}
.map p
{
  font-size: 15px;
  text-transform: uppercase;
}
/* Форма обратной связи */
.footer-form label {

  display: block;
  font-weight: bold;
  color: #f9f9f9;
}

.footer-form input, 
.footer-form textarea {
  width: 40%;
  padding: 5px;
  margin-bottom: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
}

.footer-form input:focus, 
.footer-form textarea:focus {
  border-color: #ff4e50;
  background-color: #f5f5f5;
}

.form-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

button {
  padding: 5px 5px;
  font-size: 16px;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

/* Градиентные кнопки */
.button-submit {
  background: linear-gradient(45deg, #ff4e50, #f9d423);
}

.button-reset {
  background: linear-gradient(45deg, #dc3546, #ff4e50);
}

button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
}

button:hover::before {
  left: 0;
}

button:hover {
  transform: scale(1.05);
}

/* Адаптивность */
@media (max-width: 768px) {
  .footer-bs {
      grid-template-columns: 1fr;
      text-align: center;
      width: 100%;
  }
  .map iframe {
    width: 75%;
  }
}
