* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Стили для верхнего хедера (контакты) */
.header-top {
  background-color: #f5f5f5;
  padding: 10px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: none;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.show-phone-btn, .call-btn {
  padding: 8px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.show-phone-btn {
  background-color: #fff;
  color: #333;
}

.call-btn {
  background-color: #007bff;
  color: #fff;
}
/* Стили для основного хедера (меню и логотип) */
.header-main {
  background-color: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border: none;
}

.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Блок с логотипом (всегда видимый) */
.header-logo-block {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.favicon {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.site-title {
  margin: 0;
  font-size: 27px;
  font-weight: bold;
  text-transform: uppercase; /* все буквы станут заглавными */
}

/* Навигационное меню */
.nav-menu {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
}

.nav-menu a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  border: none;
}

.nav-menu a:hover {
  color: #007bff;
}
/* Стили для гамбургера */
.hamburger-menu {
  display: none; /* Скрываем на десктопе */
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001; /* Гамбургер выше меню */
  position: relative; /* Для корректной работы z‑index */
}

.hamburger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Основной контейнер баннера */
.main-banner {
  background: url('../images/Glav-baner-globus.png') no-repeat center center/cover;
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  min-height: 450px;
}

.banner-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.banner-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: #007bff;
  color: white;
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background-color: #0056b3;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
/* Адаптивность для баннера на мобильных */
@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 2rem;
  }
  
  .banner-content p {
    font-size: 1rem;
  }
  
  .banner-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 250px;
  }
}

/* Адаптивные стили (для мобильных устройств) */
@media (max-width: 768px) {
  .hamburger-menu {
    display: flex; /* Показываем гамбургер на мобильных */
  }

  .nav-menu {
    position: fixed;
    top: 60px; /* Высота верхнего хедера + основного */
    left: -300px; /* Изначально скрыто слева */
    flex-direction: column;
    background: rgba(133, 163, 240, 0.85); /* Голубоватый полупрозрачный фон (светло‑голубой) */
    width: 280px;
    height: calc(100vh - 60px);
    padding: 20px;
    gap: 15px;
    transition: left 0.4s ease;
    display: none; /* Скрываем по умолчанию */
    border: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); /* Мягкая тень для объёма */
    z-index: 1000; /* Меню выше баннера, но ниже гамбургера */
    overflow-y: auto; /* Добавляем скролл, если меню не помещается */
    border-radius: 12px 0 0 12px; /* Закруглённые края: верхний левый и нижний левый углы */
    backdrop-filter: blur(10px); /* Эффект «оргстекла» — размытие фона */
    -webkit-backdrop-filter: blur(10px); /* Поддержка для Safari */
  }

  .nav-menu.active {
    left: 0;
    display: flex; /* Показываем при клике */
  }

  /* Увеличиваем ширину блока с логотипом, чтобы он занимал всю ширину */
  .header-logo-block {
    width: 100%;
    justify-content: space-between;
    padding: 0 20px;
  }

  /* Скрываем элементы верхнего хедера на мобильных */
  .header-top .show-phone-btn,
  .header-top span,
  .header-top .call-btn {
    display: none;
  }

  /* Стили для текста в мобильном меню */
  .nav-menu.active a {
    color: #ffffff !important; /* Белый цвет текста в открытом мобильном меню */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); /* Лёгкая тень для лучшей читаемости */
  }

  .nav-menu.active a:hover {
    color: #e0e0e0 !important; /* Светло‑серый при наведении — лёгкий контраст */
    background-color: rgba(255, 255, 255, 0.1); /* Лёгкий подсвет при наведении */
    border-radius: 8px; /* Скругление фона при наведении */
  }
}

/* Для экранов больше 768 px (десктоп) — меню всегда видно, не перекрывает контент */
@media (min-width: 769px) {
  .nav-menu {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    left: auto;
    box-shadow: none;
    z-index: auto;
  }

  .hamburger-menu {
    display: none; /* Гарантированно скрываем гамбургер на десктопе */
  }
}
.main-banner h1 {
  color: #333; /* тёмно‑серый */
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.main-banner p {
  color: #222; /* почти чёрный */
  font-size: 1.3rem;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .header-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }

  body {
    padding-top: 50px; /* Компенсируем пространство — высота хедера */
  }
}
/* Базовые стили баннера (уже есть у вас) */
.main-banner {
  background: url('../images/Glav-baner-globus.png') no-repeat center center/cover;
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  min-height: 450px; /* Будет скорректировано в медиа‑запросах */
}

/* Адаптивность для планшетов и мобильных (дополните ваши существующие медиа‑запросы) */
@media (max-width: 768px) {
  .main-banner {
    min-height: 300px;   /* Уменьшаем минимальную высоту для планшетов */
    padding: 40px 15px; /* Уменьшаем отступы */
  }
}

@media (max-width: 480px) {
  .main-banner {
    min-height: 200px;   /* Ещё меньше для смартфонов */
    padding: 20px 10px; /* Минимум отступов для узких экранов */
  }
}
.seo-banner-desc {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  font-size: 1px;
  line-height: 0;
}
.banner-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 30px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.btn {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  padding: 16px 24px;
  border-radius: 10px;
  transition: all 0.3s ease;
  color: #333;
  background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #b2ebf2;
  min-width: 200px;
  flex: 0 1 auto;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #b2ebf2 0%, #80deea 100%);
}

.btn-primary {
  background: linear-gradient(135deg, #87ceeb 0%, #4091c1 100%);
  color: white;
  border-color: #4091c1;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #4091c1 0%, #2a6aa0 100%);
}

.btn-secondary {
  background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
  color: #333;
}

/* Адаптивность для планшетов (769–1024 px) */
@media (max-width: 1024px) {
  .banner-buttons {
    gap: 15px;
    padding: 25px 15px;
  }
  .btn {
    font-size: 15px;
    padding: 14px 20px;
  }
}

/* Адаптивность для мобильных (до 768 px) — кнопки на всю ширину, одна под другой */
@media (max-width: 768px) {
  .banner-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 15px;
  }
  .btn {
    width: 90%; /* Кнопки занимают 90 % ширины экрана */
    max-width: 350px; /* Максимальная ширина кнопки на мобильных */
    font-size: 16px;
    padding: 16px 20px;
  }
}

/* Для очень маленьких экранов (до 480 px) */
@media (max-width: 480px) {
  .banner-buttons {
    padding: 15px 10px;
  }
  .btn {
    width: 95%; /* Почти на всю ширину */
    max-width: 320px; /* Немного уменьшаем максимальную ширину */
    font-size: 15px;
    padding: 14px 16px;
  }
}
/* === ФИКСАЦИЯ ЕДИНОГО ХЕДЕРА НАВЕРХУ === */

.header-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* Поверх всего остального */
  background-color: #fff; /* Сохраняем цвет фона */
  padding: 15px 0; /* Сохраняем отступы */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Сохраняем тень */
}

/* Отступ для основного контента — чтобы он не прятался под хедером */
body {
  padding-top: 60px; /* Замените 60 на реальную высоту .header-main в пикселях */
  margin: 0; /* Убираем стандартные отступы body */
}

/* === АДАПТАЦИЯ БАННЕРА ПОД РАЗНЫЕ УСТРОЙСТВА === */

.main-banner {
  min-height: 450px; /* Базовая высота */
  padding: 80px 20px; /* Отступы вокруг контента баннера */
}

@media (max-width: 768px) {
  /* Уменьшаем высоту и отступы баннера на планшетах */
  .main-banner {
    min-height: 300px;
    padding: 40px 15px;
  }
  
  /* Уменьшаем шрифт заголовка баннера */
  .banner-content h1 {
    font-size: 2rem;
  }
  
  /* Уменьшаем текст описания */
  .banner-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  /* Ещё меньше для смартфонов */
  .main-banner {
    min-height: 200px;
    padding: 20px 10px;
  }
  
  .banner-content h1 {
    font-size: 1.8rem;
  }
  
  .banner-content p {
    font-size: 0.9rem;
  }
  
  /* Кнопки на мобильных — одна под другой, на всю ширину */
  .banner-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .btn {
    width: 95%;
    max-width: 320px;
    font-size: 15px;
    padding: 14px 16px;
  }
}

/* === СТИЛИ ДЛЯ МОБИЛЬНОГО МЕНЮ (ГАМБУРГЕР) === */

@media (max-width: 768px) {
  .hamburger-menu {
    display: flex !important; /* Показываем гамбургер на мобильных */
  }

  .nav-menu {
    position: fixed;
    top: 60px !important; /* Соответствует высоте .header-main */
    left: -300px;
    flex-direction: column;
    background: rgba(133, 163, 240, 0.85);
    width: 280px;
    height: calc(100vh - 60px);
    padding: 20px;
    gap: 15px;
    transition: left 0.4s ease;
    display: none; /* Скрываем по умолчанию */
    border: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 999; /* Ниже хедера, но выше контента */
    overflow-y: auto;
    border-radius: 12px 0 0 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .nav-menu.active {
    left: 0;
    display: flex; /* Показываем при клике */
  }

  /* Стили для ссылок в открытом мобильном меню */
  .nav-menu.active a {
    color: #000000 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }

  .nav-menu.active a:hover {
    color: #e0e0e0 !important;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
  }
}

/* На десктопе — меню всегда видно, гамбургер скрыт */
@media (min-width: 769px) {
  .nav-menu {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    left: auto;
    box-shadow: none;
  }

  .hamburger-menu {
    display: none !important; /* Скрываем гамбургер */
  }
}
.ceiling-types {
  margin-top: 30px; /* Отступ от кнопок сверху */
  padding: 0 20px; /* Отступы по бокам */
  text-align: center; /* Центрируем заголовок */
}

.ceiling-types h2 {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
}

.ceiling-images {
  display: flex; /* Располагаем картинки в ряд */
  justify-content: center; /* Центрируем по горизонтали */
  gap: 15px; /* Расстояние между картинками */
}

.ceiling-images img {
  max-width: 100%; /* Картинки не вылезут за границы */
  height: auto;
  border-radius: 8px; /* Скругление углов */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Легкая тень */
}
/* Стили для модального окна */
.modal-wrapper {
  display: none; /* Скрыто по умолчанию */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Полупрозрачный черный фон */
  z-index: 1000; /* Окно поверх всего */
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  width: 300px;
  max-width: 90%;
  position: relative;
}

.close-btn {
  color: #777;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}
/* Стили для модального окна — остаются без изменений */
.modal-wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow-y: auto;
}

.modal-content {
  background: linear-gradient(135deg, #87ceeb 0%, #4091c1 100%);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  width: 400px;
  max-width: 95%;
  position: relative;
  color: white;
}

/* Кнопка закрытия (крестик) */
.close-btn {
  color: rgba(255, 255, 255, 0.8);
  font-size: 32px;
  font-weight: bold;
  position: absolute;
  right: 15px;
  top: 10px;
  cursor: pointer;
  transition: color 0.3s;
}
.close-btn:hover {
  color: white;
}

/* Стили заголовка калькулятора */
.calculator-container .calc-header {
  text-align: center;
  margin-bottom: 25px;
}
.calculator-container .calc-title {
  font-size: 24px;
  margin-bottom: 8px;
}
.calculator-container .calc-subtitle {
  opacity: 0.9;
  font-size: 14px;
}

/* Стили полей ввода */
.calculator-container .input-group {
  margin-bottom: 20px;
}
.calculator-container .input-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
}
.calculator-container input[type="number"],
.calculator-container .select-styled {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.900);
  color: rgb(7, 7, 7);
  font-size: 16px;
  outline: none;
  transition: background 0.3s;
}
.calculator-container input[type="number"]:focus,
.calculator-container .select-styled:focus {
  background: rgba(255, 255, 255, 0.2);
}

/* Поле с единицей измерения */
.calculator-container .input-with-unit {
  position: relative;
}
.calculator-container .unit {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(17, 17, 17, 0.7);
  pointer-events: none;
}

/* Стили выпадающего списка */
.calculator-container .select-styled {
  appearance: none;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" width="20" height="20"><path fill="%23fff" d="M5 8l5 5 5-5"/></svg>') no-repeat right 15px center;
  padding-right: 40px;
}

/* Блок с результатом */
.calculator-container .result-block {
  text-align: center;
  margin: 25px 0;
}
.calculator-container .result-block h4 {
  margin-bottom: 10px;
  opacity: 0.9;
  font-size: 16px;
}
.calculator-container .total-price {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 8px;
}
.calculator-container #total {
  font-size: inherit;
  font-weight: inherit;
}
.calculator-container .price-note {
  font-size: 12px;
  opacity: 0.7;
}

/* Кнопки калькулятора — уникальные классы */
.calculator-container .calc-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.calculator-container .calc-btn {
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.calculator-container .calc-btn-primary {
  background: white;
  color: #4091c1;
}
.calculator-container .calc-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.calculator-container .calc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.calculator-container .calc-btn-primary:hover {
  background: #e0e0e0;
}
.calculator-container .calc-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Адаптивность для мобильных устройств */
@media (max-width: 480px) {
  .calculator-container .modal-content {
    padding: 20px;
    width: 95%;
  }
  .calculator-container .calc-title {
    font-size: 22px;
  }
  .calculator-container .input-label {
    font-size: 13px;
  }
  .calculator-container input[type="number"],
  .calculator-container .select-styled {
    font-size: 15px;
  }
  .calculator-container .total-price {
    font-size: 28px;
  }
  .calculator-container .calc-btn {
    font-size: 13px;
    padding: 12px 16px;
  }
}

/* Анимация появления окна */
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal-content {
  animation: modalFadeIn 0.3s ease-out;
}
/* Общие стили блока */
.pricing-plans {
  padding: 10px 0;
  background-color: #fff;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

/* Стили для карточки-слайда */
.swiper-slide {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  position: relative;
}

/* Адаптация для мобильных: карточка занимает весь экран */
@media (max-width: 768px) {
  .swiper-slide {
    width: 100%;
    height: 100vh;
    padding: 40px;
  }
}

/* Изображение в карточке */
.swiper-slide img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* Заголовок */
.swiper-slide h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  text-align: center;
}

/* Описание */
.swiper-slide .plan-description {
  text-align: center;
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}

/* Цена */
.swiper-slide .price {
  font-size: 2.2rem;
  font-weight: bold;
  color: #ff6b6b;
  margin-bottom: 20px;
  text-align: center;
}

/* Контейнер для кнопки — центрирует её внутри блока тарифов */
.pricing-plans .button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}

/* Стили кнопки */
.pricing-plans .btn {
  width: auto;
  padding: 12px 24px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
  white-space: nowrap;
}

.pricing-plans .btn:hover {
  background: #0056b3;
}

/* Бейдж (значок) */
.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
}

.badge.orange {
  background-color: #ff6b6b;
}

.badge.blue {
  background-color: #007bff;
}

/* Навигационные кнопки Swiper */
.swiper-button-prev,
.swiper-button-next {
  color: #007bff;
  opacity: 0.7;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 1;
}
/* Стили для модального окна формы */
.order-form-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow-y: auto;
}

.order-form-content {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  width: 400px;
  max-width: 95%;
  position: relative;
  animation: modalFadeIn 0.3s ease-out;
}

.order-form-close {
  color: #777;
  font-size: 32px;
  font-weight: bold;
  position: absolute;
  right: 15px;
  top: 10px;
  cursor: pointer;
  transition: color 0.3s;
}

.order-form-close:hover {
  color: #333;
}

.order-form-wrapper h3 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.order-form-wrapper input,
.order-form-wrapper textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

.order-form-wrapper button {
  width: 100%;
  padding: 12px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
}

.order-form-wrapper button:hover {
  background: #0056b3;
}

/* Адаптивность для мобильных */
@media (max-width: 480px) {
  .order-form-content {
    padding: 20px;
    width: 95%;
  }
  .order-form-wrapper h3 {
    font-size: 18px;
  }
}
/* Стили для кнопки «Позвонить сейчас» */
.call-now-btn {
  display: block;
  text-align: center;
  margin-top: 15px;
  background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
  color: #333;
  border: 1px solid #b2ebf2;
  text-decoration: none;
}

.call-now-btn:hover {
  background: linear-gradient(135deg, #b2ebf2 0%, #80deea 100%);
}

/* Адаптивность для мобильных устройств */
@media (max-width: 480px) {
  .call-now-btn {
    font-size: 14px;
    padding: 12px 16px;
  }
}
/* Стили для модального окна заявки */
.modal-wrapper {
  display: none; /* Скрыто по умолчанию */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-content.promo-modal {
  background-color: #fff;
  border-radius: 16px;
  padding: 30px 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  max-width: 350px;
  width: 90%;
  position: relative;
  text-align: center;
}

/* Кнопка закрытия (крестик) */
.close-btn {
  color: #777;
  font-size: 32px;
  font-weight: bold;
  position: absolute;
  right: 15px;
  top: 10px;
  cursor: pointer;
  transition: color 0.3s;
}

.close-btn:hover {
  color: #333;
}

/* Стили заголовка модалки */
.modal-title {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: #333;
  font-weight: 500;
}

/* Стили текста про скидку */
.promo-text {
  margin-bottom: 30px;
  font-weight: 600;
  color: #333;
}

.promo-line {
  font-size: 1.8rem;
  margin: 0 0 5px 0;
}

.promo-percent {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1;
}

/* Стили кнопки "Позвонить сейчас" (голубая) */
.btn-promo {
  padding: 14px 30px;
  background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-promo:hover {
  background: linear-gradient(135deg, #b2ebf2 0%, #80deea 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.btn-cancel {
  display: block;
  width: 100%;
  max-width: 200px;
  margin: 15px auto 0; /* отступ сверху 15 px, центрирование */
  padding: 12px 24px;
  background: #f44336; /* красный цвет */
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-cancel:hover {
  background: #d32f2f; /* более тёмный красный при наведении */
  transform: translateY(-2px); /* небольшой подъём при наведении */
}
.ready-solutions {
  text-align: center;
  margin: 20px 0;
  padding: 20px;
  background: #e9f7ff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.carousel-container {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  padding: 10px 0;
}

.carousel-item {
  display: inline-block;
  width: 200px;
  margin-right: 15px;
  text-align: center;
  transition: transform 0.3s;
  cursor: pointer;
}

.carousel-item:hover {
  transform: scale(1.05);
}

.carousel-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.carousel-item p {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #333;
}

.dots-container {
  margin-top: 15px;
  display: flex;
  justify-content: center;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #333;
  margin: 0 5px;
}

.dot.active {
  background: #007bff;
}

/* Стили лайтбокса */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
}

.close:hover {
  color: #ccc;
}
/* Стили блока контактов */
.contacts-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  color: #333;
  font-size: 2rem;
}

.contacts-info {
  max-width: 600px;
  margin: 0 auto;
}

.contact-item {
  margin-bottom: 25px;
}

.contact-item h3 {
  color: #007bff;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.contact-item p {
  margin: 0;
  line-height: 1.6;
  color: #555;
}

.contact-item a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: #007bff;
}

/* Стили кнопок */
.contact-buttons {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 280px;
}

.btn-max {
  background: #4CAF50; /* Зелёный цвет для MAX */
  color: white;
}

.btn-max:hover {
  background: #388E3C;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-call {
  background: #2196F3; /* Синий цвет для звонка */
  color: white;
}

.btn-call:hover {
  background: #1976D2;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .contact-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }
  
  .btn {
    width: auto;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}
/* Адаптивность для мобильных устройств — кнопки вертикально */
@media (max-width: 768px) {
  .contact-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .btn {
    width: 90%;
    max-width: 300px;
    margin: 0 auto;
  }
}
html {
  scroll-behavior: smooth; /* плавная прокрутка */
}
/* Скрываем кнопки на всех устройствах по умолчанию */
.mobile-only-actions {
  display: none;
}

/* Показываем только в мобильной версии при открытом гамбургере */
@media (max-width: 767px) {
  .nav-menu.active .mobile-only-actions {
    display: block;
    padding: 20px;
    border-top: 1px solid #eee;
    text-align: center;
  }
}
/* Основные стили баннера */
#promo-banner {
  max-width: 1200px;
  margin: 30px auto;
  padding: 25px;
}

.banner-title {
  text-align: center;
  color: #4a6d5a;
  font-size: 32px;
  margin-bottom: 35px;
  font-weight: 600;
  line-height: 1.2;
}

/* Контейнер с зелёной рамкой */
.promo-card-container {
  display: flex;
  border: 4px solid #a8d5aa; /* Нежно‑зелёная рамка */
  border-radius: 16px;
  background: #f8fbf9; /* Очень светлый мятный фон */
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(168, 213, 170, 0.25);
}

/* Стили карточек акций */
.promo-card {
  flex: 1;
  padding: 40px 30px;
  text-align: center;
  border-right: 2px solid #d8e8db;
}
.promo-card:last-child {
  border-right: none;
}

/* Заголовки */
.promo-title {
  color: #4a6d5a; /* Тёмно‑зелёный, но не насыщенный */
  font-size: 28px;
  margin: 0 0 15px 0;
  font-weight: bold;
  line-height: 1.3;
}

/* Красный акцент для скидки */
.promo-discount {
  color: #e53935; /* Насыщенный красный для скидки */
  font-size: 34px; /* Чуть больше остальных заголовков */
}

/* Подзаголовки */
.promo-subtitle {
  color: #6c9a7c; /* Мягкий зелёный */
  font-size: 20px;
  margin: 0 0 20px 0;
  font-weight: 500;
}

/* Условия */
.promo-conditions {
  color: #7a8c7f; /* Серо‑зелёный, приглушённый */
  font-size: 16px;
  margin: 0;
  line-height: 1.4;
}

/* Адаптивность: для экранов < 768px */
@media (max-width: 768px) {
  .promo-card-container {
    flex-direction: column;
  }
  .promo-card {
    border-right: none;
    border-bottom: 2px solid #d8e8db;
    padding: 30px 20px;
  }
  .banner-title {
    font-size: 26px;
  }
  .promo-title {
    font-size: 24px;
  }
  .promo-subtitle {
    font-size: 18px;
  }
  .promo-conditions {
    font-size: 14px;
  }
}
/* Изоляция */
.nt-globus- * { box-sizing: border-box; }

.nt-globus-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.nt-globus-title {
  text-align: center;
  font-size: 32px;
  color: #1a2a3a;
  margin: 60px 0 10px 0;
  font-weight: 700;
  line-height: 1.2;
}

.nt-globus-subtitle {
  text-align: center;
  color: #5f6b7a;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.5;
}

/* Адаптивная сетка */
.nt-globus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* Карточка: оргстекло + зелёная рамка как у Сбера */
.nt-globus-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 2px solid #00b078; /* фирменный зелёный Сбера */
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nt-globus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: #009a65; /* чуть темнее при наведении */
}

/* Превью картинки */
.nt-globus-preview {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.nt-globus-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.nt-globus-card:hover .nt-globus-preview img {
  transform: scale(1.05);
}

/* Плашка с инфой: сдержанная, серая (чтобы рамка была главным акцентом) */
.nt-globus-info {
  padding: 14px;
  background: #f5f7fa;
  color: #2c3e50;
  border-bottom: 1px solid #eef0f3;
}

.nt-globus-type {
  display: inline-block;
  background: #eef2f7;
  color: #00b078;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.nt-globus-info h3 {
  font-size: 17px;
  color: #1a2a3a;
  margin: 8px 0 4px 0;
  line-height: 1.2;
}

.nt-globus-info p {
  color: #6b7c8a;
  font-size: 13px;
  margin: 0;
}

/* Триггер «Подробнее» */
.nt-globus-trigger {
  cursor: pointer;
  padding: 14px 0;
  background: #fff;
  border-top: 1px solid #f0f2f5;
  text-align: center;
  color: #6b7c8a;
  font-weight: 600;
  user-select: none;
  font-size: 14px;
  transition: background 0.2s, color 0.2s;
}

.nt-globus-trigger:hover {
  background: #fafbfc;
  color: #4a5d6d;
}

/* Блок деталей */
.nt-globus-details {
  padding: 18px;
  line-height: 1.5;
  color: #3a4652;
  font-size: 14px;
}

.nt-globus-hidden {
  display: none;
}

/* Совет перед монтажом: аккуратный блок с зелёной полосой */
.nt-globus-tip {
  background: #f8fdfb;
  border-left: 4px solid #00b078;
  padding: 14px;
  margin: 16px 0;
  border-radius: 0 6px 6px 0;
  font-size: 14px;
}

.nt-globus-tip strong {
  color: #008f60;
}

/* Кнопка «Позвонить» в стиле Сбера: белая, на зелёном фоне */
.nt-globus-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background-color: #00b078; /* зелёный фон */
  color: #ffffff;            /* белый текст */
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0, 176, 120, 0.2);
}

.nt-globus-btn:hover {
  background-color: #009a65;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 176, 120, 0.3);
}

.nt-globus-btn:active {
  transform: translateY(0);
  background-color: #008a5a;
}
