   /* Стили для кнопки-ссылки */
   
      /* Стили для кнопки-ссылки */
      .calculator-button {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1000;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 18px 32px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white !important;
        text-decoration: none;
        border-radius: 12px;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        font-weight: 600;
        font-size: 1.1rem;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
        min-width: 200px;
        text-transform: uppercase;
    }

    .calculator-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
        text-decoration: none;
        color: white !important;
    }

    .calculator-button:visited {
        color: white !important;
    }

    .calculator-button:active {
        transform: translateY(0);
    }

    
    .two-column {
        grid-template-columns: 1fr;
    }


    .before-after-block {
        max-width: 1200px;
        margin: 40px auto;
        padding: 40px 20px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    .before-after-title {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 40px;
        color: #333;
    }
    
    .before-after-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-bottom: 30px;
    }
    
    .ba-carousel-section {
        position: relative;
        background: #f8f9fa;
        border-radius: 15px;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .ba-section-title {
        text-align: center;
        color: #333;
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    
    .ba-carousel-container {
        position: relative;
        overflow: hidden;
        border-radius: 15px;
        height: 300px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    }
    
    .ba-carousel-track {
        display: flex;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        height: 100%;
    }
    
    .ba-carousel-slide {
        min-width: 100%;
        height: 100%;
        position: relative;
    }
    
    .ba-carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }
    
    .ba-carousel-slide .ba-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
        color: white;
        padding: 20px;
        text-align: center;
        font-weight: 500;
        border-radius: 0 0 10px 10px;
    }
    
    .ba-carousel-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.5);
        border: none;
        color: white;
        font-size: 1.5rem;
        padding: 15px;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
    }
    
    .ba-carousel-nav:hover {
        background: rgba(0, 0, 0, 0.7);
        transform: translateY(-50%) scale(1.1);
    }
    
    .ba-carousel-nav.ba-prev {
        left: 10px;
    }
    
    .ba-carousel-nav.ba-next {
        right: 10px;
    }
    
    .ba-carousel-indicators {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }
    
    .ba-indicator {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #ddd;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .ba-indicator.ba-active {
        background: #007bff;
        transform: scale(1.2);
    }
    
    .ba-sync-info {
        text-align: center;
        color: #666;
        font-size: 0.9rem;
        margin-top: 20px;
        padding: 15px;
        background: #f1f3f4;
        border-radius: 10px;
    }
    
    @media (max-width: 768px) {
        .before-after-container {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .before-after-title {
            font-size: 2rem;
        }
        
        .ba-carousel-container {
            height: 250px;
        }
    }
    
    @media (max-width: 480px) {
        .ba-carousel-nav {
            padding: 10px;
            font-size: 1.2rem;
        }
        
        .ba-carousel-container {
            height: 200px;
        }
        
        .before-after-block {
            padding: 20px 10px;
        }
   
      }

      .language-switcher {
        text-align: center;
        margin-top: 10px;
        font-family: Arial, sans-serif;
        font-weight: bold;
      }
      
      .language-switcher .lang-link {
        text-decoration: none;
        color: #333;
        margin: 0 5px;
        transition: color 0.2s;
      }
      
      .language-switcher .lang-link:hover,
      .language-switcher .lang-link.active {
        color: #333;
      }
      
      .language-switcher {
        text-align: center;
        margin-top: 10px;
        font-family: Arial, sans-serif;
        font-weight: bold;
        background-color: #b3b5b2; /* серый фон всей строки */
        padding: 8px 0; /* отступ сверху и снизу, чтобы строка была выше */
        border-radius: 4px; /* при желании скруглить углы */
      }

      .faq-section {
        max-width: 850px;
        margin: 50px auto;
        padding: 30px;
        background: #f7f7f7;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      }
    
      .faq-title {
        text-align: center;
        font-size: 28px;
        font-weight: bold;
        margin-bottom: 30px;
        color: #333;
      }
    
      .faq-item {
        margin-bottom: 15px;
        border-bottom: 1px solid #ddd;
      }
    
      .faq-question {
        width: 100%;
        background: none;
        border: none;
        outline: none;
        text-align: left;
        font-size: 18px;
        font-weight: 600;
        color: #444;
        padding: 15px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: color 0.3s;
      }
    
      .faq-question:hover {
        color: #000;
      }
    
      .faq-answer {
        display: none;
        padding: 0 15px 15px 15px;
        color: #555;
        font-size: 16px;
        line-height: 1.5;
      }
    
      .faq-item.active .faq-answer {
        display: block;
        animation: fadeIn 0.4s ease-in-out;
      }
    
      .faq-item.active .faq-question {
        color: #0077cc;
      }
    
      @keyframes fadeIn {
        from {opacity: 0; transform: translateY(-5px);}
        to {opacity: 1; transform: translateY(0);}
      }
      .seo-btn {
        padding: 10px 25px;
        background: #222;
        color: #fff;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        cursor: pointer;
        transition: background 0.3s;
      }
      .seo-btn:hover {
        background: #444;
      }
      
      /* Общий блок отзывов */
#reviews {
  padding: 60px 20px;
  background: #f9f9f9;         /* светлый фон (можно заменить на текстуру потолка) */
  border-top: 1px solid #ddd;  /* разделительная линия сверху */
  border-bottom: 1px solid #ddd;
}

/* Заголовок */
.reviews-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: #222;                 /* тёмный цвет под стиль White Luks */
  margin-bottom: 40px;
  text-transform: uppercase;   /* ВСЕ ЗАГЛАВНЫЕ буквы */
  letter-spacing: 1px;         /* лёгкое разрежение букв */
}

/* Контейнер с отзывами */
#reviews .sk-ww-google-reviews {
  max-width: 1200px;           /* ограничение по ширине */
  margin: 0 auto;              /* выравнивание по центру */
}

/* Эффект плавного появления при прокрутке */
.reviews-title, 
#reviews .sk-ww-google-reviews {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

/* Когда элемент становится видимым */
.reviews-title.visible, 
#reviews .sk-ww-google-reviews.visible {
  opacity: 1;
  transform: translateY(0);
}


.snow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Важно! Чтобы не мешал кликам */
  z-index: 9999; /* Поверх всех элементов */
  overflow: hidden;
}

/* Снежинки */
.snowflake {
  position: absolute;
  top: -20px;
  color: white;
  font-size: 20px;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
  opacity: 0.8;
  animation-name: fall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  user-select: none;
}

/* Анимация падения */
@keyframes fall {
  0% {
      transform: translate(0, 0) rotate(0deg);
      opacity: 0.8;
  }
  100% {
      transform: translate(var(--end-x), 100vh) rotate(360deg);
      opacity: 0;
  }
}

/* Опционально: разные стили для больших и маленьких снежинок */
.snowflake.small {
  font-size: 12px;
  opacity: 0.6;
  filter: blur(0.5px);
}

.snowflake.medium {
  font-size: 18px;
  opacity: 0.7;
}

.snowflake.large {
  font-size: 26px;
  opacity: 0.9;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
}

/* Новогодний баннер - КРАСНО-ЗОЛОТОЙ */
.new-year-banner {
  background: linear-gradient(90deg, 
      #e73434 0%,        /* Темно-красный */
      #C41E3A 30%,       /* Кармин */
      #8B0000 70%, 
      #e61111 100%);     /* Очень темный красный */
  color: #FFD700;        /* Золотой текст */
  text-align: center;
  padding: 12px 20px;
  font-family: 'Arial', sans-serif;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #FFD700; /* Золотая граница */
  box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
  z-index: 9000 !important;
}

/* Контейнер содержимого */
.banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px 25px;
  position: relative;
  z-index: 9001;
}

/* Иконки новогодние */
.new-year-icon {
  font-size: 24px;
  animation: swing 3s ease-in-out infinite;
}

/* Обновляем цвет основного текста */
.banner-text {
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFD700; /* Золотой текст */
}


/* Акцентная цена */
.highlight-price {
  background: linear-gradient(45deg, #1f8a04, #0fe707);
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 22px;
  font-weight: 900;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
  box-shadow: 0 4px 8px rgba(13, 199, 7, 0.4);
  animation: pulse 2s infinite;
  white-space: nowrap;
}

/* Срок действия - подгоняем под новую цветовую схему */
.deadline {
  background: rgba(255, 215, 0, 0.15); /* Прозрачное золото */
  border: 1px solid rgba(255, 215, 0, 0.4);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #FFE57F; /* Светло-золотой */
}

.deadline-date {
  color: #FFD700;
  font-weight: bold;
  font-size: 16px;
}

/* Кнопка действия */
.action-btn {
  background: linear-gradient(45deg, #3dd51e, #36c70a);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  transition: all 0.3s ease;
  border: 2px solid #FFD700;
  box-shadow: 0 4px 10px rgba(213, 43, 30, 0.3);
  white-space: nowrap;
}

.action-btn:hover {
  background: linear-gradient(45deg, #ff8c00, #FFD700);
  color: #0a2e1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

/* Анимации */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes swing {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(5deg); }
  75% { transform: rotate(-5deg); }
}

/* Мигание для срочности */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

/* Декоративные элементы баннера */
.banner-decoration {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.1;
  font-size: 40px;
  color: #FFD700;
}

/* Адаптивность */
@media (max-width: 1024px) {
  .banner-content {
      gap: 12px 20px;
  }
  .banner-text {
      font-size: 16px;
  }
  .highlight-price {
      font-size: 20px;
      padding: 6px 14px;
  }
}

@media (max-width: 768px) {
  .new-year-banner {
      padding: 10px 15px;
  }
  .banner-content {
      flex-direction: column;
      gap: 10px;
  }
  .banner-text {
      flex-direction: column;
      gap: 8px;
      text-align: center;
      font-size: 15px;
  }
  .deadline {
      font-size: 14px;
      padding: 5px 12px;
  }
  .action-btn {
      padding: 7px 18px;
      font-size: 14px;
  }
  .new-year-icon {
      font-size: 20px;
  }
}

/* Для мобильных - упрощенная версия */
@media (max-width: 480px) {
  .new-year-banner {
      padding: 8px 10px;
  }
  .banner-text {
      font-size: 14px;
  }
  .highlight-price {
      font-size: 18px;
      padding: 5px 12px;
  }
  .new-year-icon:first-child,
  .new-year-icon:last-child {
      display: none;
  }
}

@media (max-width: 768px) {
  .snowflake {
      font-size: 16px;
      animation-duration: 10s !important;
  }
}