body {
      min-height: 2000px; /* для демонстрации скролла */
    }

    /* Навбар прозрачный */
    .navbar {
      transition: background-color 0.4s ease, box-shadow 0.4s ease;
      background-color: transparent;
    }

    /* Синий фон при скролле */
    .navbar.scrolled {
      background-color: #0a2c5f !important;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }

    .btn-whatsapp {
      border: 1px solid white;
      color: white;
      border-radius: 25px;
      padding: 5px 15px;
      text-transform: uppercase;
      font-weight: bold;
      transition: 0.3s;
    }

    .btn-whatsapp:hover {
      background: #25D366;
      color: white;
      border-color: #25D366;
    }

    .info-section {
  background: #ffffff; /* можно поменять на #f8f9fa для серого фона */
}

.info-section h2 {
  color: #0a2c5f;
}
.hero-section {
  background: url("../img/hero.jpg") no-repeat center center;
  background-size: cover;
  min-height: 70vh;
  position: relative;
}

/* Затемнение для читаемости текста */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 44, 95, 0.6); /* полупрозрачный синий слой */
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.advantages {
  background: #0a2c5f; /* синий фон */
}

.advantages img {
  width: 60px;
  height: 60px;
}

.advantage-col {
  border-right: 1px solid rgba(255,255,255,0.4); /* белая разделительная полоса */
}

/* убираем правую границу у последнего блока */
.advantages .col-md-3:last-child {
  border-right: none;
}
.portfolio img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.portfolio img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}
.btn-whatsapp-inverse {
  background: #25D366;
  color: white;
  border: 1px solid #25D366;
  border-radius: 25px;
  padding: 8px 20px;   /* меньше ширина */
  text-transform: uppercase;
  font-weight: bold;
  transition: 0.3s;
  display: inline-block;
  text-align: center;  /* центрируем текст */
  min-width: 120px;    /* задаём минимальную ширину */
}

.btn-whatsapp-inverse:hover {
  background: white;
  color: #25D366;
  border-color: #25D366;
}
.production-section {
  background-color: #0a2c5f; /* синий Bootstrap */
}

.reviews-section {
  background-color: #BAE8FF;
}

.review-box {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.footer .map-container {
  border-radius: 15px;
  overflow: hidden;
}

.footer-bottom {
  font-size: 14px;
  color: #ddd;
}
.footer .map-container {
  border-radius: 15px;
  overflow: hidden;
}

.footer-bottom {
  font-size: 14px;
  color: #ddd;
}
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 1.5s infinite;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
