

/* Start:/bitrix/templates/empty/styles.css?17603834565995*/
/* Добавьте стили для компонента меню "top" (если нужно) */
.site-header {
    background: #fff;
    border-bottom: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
    padding: 10px 0;
    position: relative;
    z-index: 1000;
}

.container.header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    
    display: flex;
    justify-content: space-between; /* лого слева, меню справа */
    align-items: center;            /* выравнивание по вертикали */
    gap: 40px;
    box-sizing: border-box;
}

/* Левая колонка - Логотип */
.header-logo {
    flex-shrink: 0;   /* не сжимается, фиксированная ширина по содержимому */
}

.logo-link {
    display: inline-block;
    user-select: none;
    transition: transform 0.3s ease;
}

.logo-link:hover .logo-image {
    transform: scale(1.05);
}

.logo-image {
    height: 90px; /* регулируйте для вашего логотипа */
    width: auto;
    display: block;
}

/* Правая колонка - Меню */
.header-menu {
    flex-grow: 1;    /* занимает всё доступное пространство */
    display: flex;
    justify-content: flex-end; /* меню прижато к правому краю контейнера */
    align-items: center;
}

/* Меню компонента (в шаблоне menu/top/template.php должен быть ul.menu-list) */
.main-navigation .menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 12px;
    white-space: nowrap; /* запрещаем перенос */
    align-items: center;
}

/* Пункты меню */
.main-navigation .menu-item {
    position: relative;
    display: inline-block;
}

/* Ссылки меню */
.main-navigation .menu-item > a {
    display: block;
    padding: 12px 24px;
    font-size: 16px;
    font-family: 'Evolventa-Regular', sans-serif;
    font-weight: 500;
    color: #1A3455;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease, background 0.3s ease;
    z-index: 10;
}

/* Наведение и активные состояния */
.main-navigation .menu-item > a::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #1A3455;
    transition: width 0.3s;
}

.main-navigation .menu-item > a:hover::before {
    width: 60%;
}

.main-navigation .menu-item > a::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(26,52,85,0.1) 0%, rgba(245,248,252,0.5) 100%);
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.3s, transform 0.3s;
    border-radius: 30px;
    z-index: -1;
}

.main-navigation .menu-item > a:hover::after {
    opacity: 1;
    transform: scale(1);
}

.main-navigation .menu-item.active > a {
    color: #fff;
    background-color: #1A3455;
    box-shadow: 0 4px 12px rgba(26, 52, 85, 0.2);
    font-weight: 700;
}

.main-navigation .menu-item.active > a::before,
.main-navigation .menu-item.active > a::after {
    display: none;
}

/* Выпадающие подменю */
.main-navigation .menu-item.dropdown ul.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10000;
}

.main-navigation .menu-item.dropdown:hover > ul.submenu {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(-10px);}
    to {opacity: 1; transform: translateY(0);}
}

/* Стили подменю */
.main-navigation .submenu .menu-item > a {
    padding: 10px 20px;
    font-size: 15px;
    border-radius: 0;
    text-transform: none;
    color: #1A3455;
    background: none;
}

.main-navigation .submenu .menu-item > a:hover {
    background: #f5f8fc;
    color: #0063ec;
}

.main-navigation .submenu .menu-item.active > a {
    color: #0063ec;
}

/* --- Адаптивность --- */
@media (max-width: 992px) {
    .container.header-wrapper {
        gap: 20px;
    }
    .logo-image {
        height: 70px;
    }
    .main-navigation .menu-list {
        gap: 8px;
        flex-wrap: wrap;
    }
    .main-navigation .menu-item > a {
        padding: 10px 18px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .container.header-wrapper {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
    .logo-image {
        height: 80px;
    }
    .header-menu {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .main-navigation .menu-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        justify-items: center;
        max-width: 360px;
        margin: 0 auto;
        padding: 0;
        width: 100%;
    }
    .main-navigation .menu-item {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .main-navigation .menu-item > a {
        width: 100%;
        padding: 10px 0;
        text-align: center;
        border-radius: 20px;
        font-size: 14px;
        letter-spacing: normal;
        text-transform: none;
    }
    .main-navigation .menu-item.dropdown ul.submenu {
        display: none !important;
        position: static;
        box-shadow: none;
        border-radius: 0;
        min-width: unset;
        padding: 0;
        height: 0;
        overflow: hidden;
    }
    .main-navigation .menu-item.dropdown:hover > ul.submenu {
        display: none !important;
    }
}


/* End */


/* Start:/bitrix/templates/empty/template_styles.css?17603815854920*/
.about-company.container {
  max-width: 1200px;
  margin: 40px auto 80px;
  padding: 0 20px;
  color: #333;
  font-size: 18px;
  line-height: 1.6;
}

/* Текст описания компании */
.about-text {
  margin-bottom: 30px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
  color: #2c3e50;
}

/* Контейнер с изображениями магазина снизу */
.about-images-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: nowrap;
  max-width: 1200px;
  margin: 0 auto;
}

.about-images-row img {
  flex: 1 1 calc((100% - 25px) / 2);
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.about-images-row img:hover {
  transform: scale(1.07) translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

/* Карточки с ценностями */
.advantage {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
}

.advantage-card {
  background: #fdfdfd;
  padding: 32px 24px;
  border-radius: 14px;
  flex: 1 1 300px;
  box-shadow: 0 6px 18px rgba(44, 62, 80, 0.08);
  transition: box-shadow 0.3s ease;
  cursor: default;
}

.advantage-card:hover {
  box-shadow: 0 12px 30px rgba(44, 62, 80, 0.16);
}

.advantage-icon {
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
}

.advantage-card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #1a252f;
}

.advantage-text {
  font-size: 16px;
  color: #4a5a6a;
  line-height: 1.55;
}

/* Секция лицензий */
.licenses-section {
  max-width: 800px;
  margin: 0 auto 80px;
  padding: 0 20px;
  text-align: center;
}

/* Галерея лицензий - 2 в ряд */
.licenses-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 720px;
  margin: 0 auto;
}

.license-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  object-fit: contain;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.license-img:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
/*------------*/
.contacts-page.container {
  max-width: 1200px;
  margin: 40px auto 80px;
  padding: 0 20px;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #2c3e50;
}

.popular-tariffs {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #1a56db;
  position: relative;
}

.popular-tariffs::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #1a56db;
  margin: 10px auto 0;
  border-radius: 3px;
}

.contacts-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.contacts-info {
  flex: 1 1 450px;
  min-width: 280px;
  max-width: 600px;
  text-align: left;
}

.contacts-info h2,
.contacts-info h3 {
  font-weight: 600;
  margin-bottom: 20px;
  color: #1a56db;
}

.contacts-info p,
.contacts-info ul li {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #333;
}

.contacts-info ul {
  list-style: none;
  padding-left: 0;
}

.contacts-info ul li a {
  color: #1a56db;
  text-decoration: none;
}

.contacts-info ul li a:hover {
  text-decoration: underline;
}

.contacts-photo {
  flex: 1 1 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 280px;
}

.contacts-photo img {
  width: 100%;
  max-width: 400px;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}

.contacts-map {
  max-width: 1000px;
  margin: 0 auto 80px;
  text-align: center;
}

.contacts-map h2 {
  font-weight: 600;
  margin-bottom: 25px;
  color: #1a56db;
  font-size: 28px;
}

.contacts-map iframe {
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
  width: 100%;
  height: 400px;
  border: none;
}

/* Responsive */

@media (max-width: 991px) {
  .contacts-container {
    flex-direction: column;
    gap: 20px;
  }
  .contacts-info,
  .contacts-photo {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: auto;
    text-align: center;
  }
  .contacts-info p,
  .contacts-info ul li {
    font-size: 16px;
  }
  .contacts-photo img {
    max-height: 300px;
    object-fit: contain;
  }
  .contacts-info h2,
  .contacts-info h3 {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .contacts-page.container {
    padding: 0 15px;
  }
  .popular-tariffs {
    font-size: 24px;
  }
  .contacts-info h2,
  .contacts-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .contacts-info p,
  .contacts-info ul li {
    font-size: 14px;
  }
  .contacts-map h2 {
    font-size: 22px;
  }
  .contacts-map iframe {
    height: 280px;
  }
  .contacts-photo img {
    max-height: 220px;
  }
}


/* End */
/* /bitrix/templates/empty/styles.css?17603834565995 */
/* /bitrix/templates/empty/template_styles.css?17603815854920 */
