.contacts-toggle-btn {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
  border-radius: 50%;
  border: none;
  box-shadow: 0 4px 15px rgba(30, 136, 229, 0.5);
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.3s ease;
  align-items: center;
  justify-content: center;
}

.contacts-toggle-btn:active {
  transform: scale(0.95);
}

.contacts-toggle-btn svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.contacts-wrapper {
  position: relative;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .contacts-toggle-btn {
    display: flex;
  }

  .contacts-info {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: white;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
  }

   .contacts-info.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .contacts-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    color: #666;
    line-height: 1;
    z-index: 10;
  }

  .contacts-close-btn:active {
    background: #e0e0e0;
  }

  .map-container {
    margin-bottom: 80px;
  }
}