

/* Start:/local/templates/new-taxi/styles.css?17640764334573*/
.footer {
  background: #1A1919;
  color: white;
  padding: 40px 60px;
  font-family: 'HeliosExtC', Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Выравниваем по верху */
  gap: 40px;
  width: 100%;
}

/* Левая часть */
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex: 0 0 700px; /* Фиксированная ширина */
  margin-left: 70px;
}

.footer-logo {
  width: 350px; /* Ты сказал 250px */
  height: auto;
}

.footer-phone-button {
  display: block;
  background: #FFD700;
  color: #000;
  text-decoration: none;
  padding: 14px 50px;
  border-radius: 8px;
  text-align: center;
  transition: background 0.2s ease;
  line-height: 1.3;
  font-size: 1rem; /* основной текст */
}

.phone-number {
  display: block;
  font-weight: 600; /* очень жирный */
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.footer-phone-button:hover {
  background: #FFC107;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social img {
  width: 24px;
  height: 24px;
  transition: filter 0.2s ease;
}

/* Правая часть */
.footer-right {
  display: flex;
  gap: 40px;
  flex: 1; /* Занимает всё оставшееся пространство */
  justify-content: space-between; /* Равномерное распределение колонок */
  padding-top: 32px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 160px;
  flex: 1; /* Каждая колонка растягивается равномерно */
}

.footer-column h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: white;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
}

.footer-column li {
  margin: 0;
  margin-bottom: 15px;
}

.footer-column a {
  color: #ccc;
  text-decoration: none;

  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #FFD700;
}

.footer-bottom-row {
  display: none; /* Скрыт на всех экранах по умолчанию */
}

.footer-contact {
  display: block;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7); /* Прозрачность 70% */
    margin: 0 0 6px 0; /* Отступ между строками */
    font-size: 1rem; /* При необходимости — размер шрифта */
    line-height: 1.4;
}

/* Адаптивность */

@media (max-width: 1500px) {
  .footer-left {
    flex: none;
    margin-left: auto;
  }
}

/* === ПЛАНШЕТНАЯ ВЕРСИЯ: max-width: 1024px === */
@media (max-width: 1024px) {
  .footer {
    padding: 30px 20px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .footer-left {
    margin-left: 0;
    align-items: center;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .footer-logo {
    width: 350px;
    margin-bottom: 30px;
  }

  /* Скрываем верхний телефон и контактную информацию */
  .footer-left .footer-phone-button,
  .footer-left .footer-contact,
  .footer-left .footer-social {
    display: none;
  }

  /* Правая часть — три колонки в ряд */
  .footer-right {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 90%;
    flex-wrap: wrap;
    max-width: 800px;
    margin-left: 50px;
    padding-top: 0px;
  }

  .footer-column {
    min-width: 140px;
    flex: 1;
    align-items: flex-start;
    text-align: left;
  }

  /* Нижний блок: адрес + соцсети слева, кнопка справа */
  .footer-bottom-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    max-width: 600px;
    align-items: flex-start;
  }

  .footer-bottom-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    color: #ccc;
    font-size: 0.9rem;
  }

  .footer-bottom-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
  }

  .footer-phone-button {
    display: block;
    background: #FFD700;
    color: #000;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    text-align: center;
    transition: background 0.2s ease;
    line-height: 1.3;
    font-size: 0.95rem;
    max-width: 220px;
  }

  .phone-number {
    display: block;
    font-weight: 600;
    margin-top: 2px;
  }
}
/* End */


/* Start:/local/templates/new-taxi/template_styles.css?17647815366172*/
/* === ОБЩИЕ СТИЛИ ХЕДЕРА === */
.header {
  background: #1A1919;
  color: white;
  padding: 5px 40px;
  position: fixed;           
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;             
  font-family: 'HeliosExtC', Arial, sans-serif;
  box-sizing: border-box;    
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* === ЛОГОТИПЫ === */
.header-logo-large {
  width: 350px;
  height: auto;
  display: block;
}

.header-logo-small {
  width: 250px;
  height: auto;
  display: none;
}

.header-logo-phone {
  width: 40px;
  height: auto;
  display: none;
}

/* === ПРАВАЯ ЧАСТЬ ХЕДЕРА === */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

/* === ОСНОВНАЯ КНОПКА ТЕЛЕФОНА (для больших экранов) === */
.header-phone-button {
  display: block;
  background: #FFD700;
  color: #000;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 8px;
  text-align: center;
  transition: background 0.2s ease;
  line-height: 1.3;
}

.header-phone-button p {
  margin: 0;
  display: block;
}

.phone-number {
  display: block;
  font-weight: 600;
  margin: 4px 0;
  font-size: 1rem;
}

.header-phone-button:hover {
  background: #FFC107;
}

/* === МОБИЛЬНАЯ КНОПКА ТЕЛЕФОНА (только номер) === */
.header-phone-button-mobile {
  display: none; /* Скрыта по умолчанию */
  background: #FFD700;
  color: #000;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  text-align: center;
  transition: background 0.2s ease;
  line-height: 1.3;
  min-width: 120px;
}

.header-phone-button-mobile .phone-number {
  font-weight: 800;
  margin: 0;
  font-size: 1rem;
}

.header-phone-button-mobile:hover {
  background: #FFC107;
}

/* === КОНТАКТ И СОЦСЕТИ === */
.header-contact {
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

.header-contact p {
  margin: 0;
  font-size: 1rem;
}

.header-contact p:first-of-type {
  font-size: 1rem;
  line-height: 1.3;
}

.header-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.header-social img {
  width: 30px;
  height: 30px;
}

/* === ОСНОВНОЕ МЕНЮ (для больших экранов) === */
.header-nav {
  border-top: 1px solid #333;
  padding-top: 10px;
}

.header-nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.header-nav li a {
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease;
  padding: 6px 10px;
  border-radius: 8px 8px 0 0;
}

.header-nav li a:hover {
  background: #FFD700;
  color: #000;
}

/* === АДАПТИВНОЕ МЕНЮ (скрыто по умолчанию) === */
.nav-container {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #121212;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out, visibility 0.3s ease-out;
  pointer-events: none; /* ← БЛОКИРУЕМ КЛИКИ В СКРЫТОМ СОСТОЯНИИ */
}

.nav-container.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto; /* ← РАЗРЕШАЕМ КЛИКИ В ОТКРЫТОМ СОСТОЯНИИ */
}

.nav-container .header-nav {
  padding: 15px 0;
  display: block;
}

.nav-container .header-nav ul {
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.nav-container .header-nav li a {
  font-size: 1rem;
  padding: 10px 20px;
  width: 100%;
  text-align: center;
  border-radius: 8px;
}

/* === ИКОНКА МЕНЮ === */
.header-menu-icon {
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: filter 0.2s ease;
  display: none;
}

.header-menu-icon:hover {
  filter: brightness(1.2);
}

/* === ЦЕНТРАЛЬНЫЙ БЛОК НА МОБИЛЕ (только для <576px) === */
.header-center-mobile {
  display: none;
}

/* ============ АДАПТИВНЫЕ СТИЛИ ============ */

/* === До 1300px — УБИРАЕМ "Забронируйте..." и контакт === */
@media (max-width: 1300px) {
  .header {
    padding: 15px 20px;
  }

  .header-top {
    justify-content: space-between;
    gap: 15px;
  }

  .header-left {
    gap: 10px;
  }

  .header-logo-large {
    display: none;
  }

  .header-logo-small {
    display: block;
    width: 250px;
    margin-left: 40px;
  }

  .header-logo-phone {
    display: none;
  }

  /* Скрываем текст "Забронируйте прямо сейчас" */
  .header-phone-button p {
    display: none;
  }

  .header-contact {
    display: none;
  }

  /* Адаптивное меню показываем */
  .header-nav {
    display: none;
  }

  .nav-container {
    display: block;
  }

  .header-menu-icon {
    display: block;
  }
}

/* === МОБИЛЬНАЯ ВЕРСИЯ: до 576px === */
@media (max-width: 576px) {
  .header {
    padding: 12px 15px;
  }

  .header-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }

  .header-left {
    order: 0;
    flex-shrink: 0;
  }

  .header-logo-large,
  .header-logo-small {
    display: none;
  }

  .header-logo-phone {
    display: block;
    width: 40px;
    height: auto;
  }

  /* Центр: кнопка телефона */
  .header-center-mobile {
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex: 1;
    order: 1;
  }

  .header-phone-button-mobile {
    display: block;
  }

  /* Скрываем основную кнопку в .header-right */
  .header-right .header-phone-button {
    display: none;
  }

  .header-contact {
    display: none;
  }

  .header-right {
    display: flex;
    align-items: center;
    gap: 0;
    order: 2;
    margin-left: auto;
    flex-shrink: 0;
  }

  .header-menu-icon {
    display: block;
    width: 30px;
    height: 30px;
    margin-left: 0;
  }
}
/* End */
/* /local/templates/new-taxi/styles.css?17640764334573 */
/* /local/templates/new-taxi/template_styles.css?17647815366172 */
