.header-icon {
  width: 16px;
  height: 16px;
  fill: #2C5084;
  flex-shrink: 0;
}

.flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.gap-6 {
  gap: 6px;
}

.gap-10 {
  gap: 10px
}

.gap-20 {
  gap: 20px
}

.gap-30 {
  gap: 30px
}

.gap-40 {
  gap: 40px
}

.gap-50 {
  gap: 50px
}

.gap-60 {
  gap: 60px
}

.gap-70 {
  gap: 70px
}

.gap-80 {
  gap: 80px
}

.gap-90 {
  gap: 90px
}

.gap-100 {
  gap: 100px
}

.header-address-info {
  font-size: 13px;
  position: relative;
}

.header-term {
  font-size: 13px;
  color: #333333;
}

.header-address-info .map-link {
  color: #2C5084;
  text-decoration: none;
  border-bottom: 1px dashed #2C5084;
  font-size: 11px;
  font-weight: 600;
  width: fit-content;
  margin-top: 2px;
}

.header-address-info .map-link:hover {
  color: #DC4C3C;
  border-color: #DC4C3C;
}

.header-address-info__popup {
  visibility: hidden;
  position: absolute;
  transition: .3s;
  opacity: 0;
  transform: translateY(10px);
  width: 300px;
  left: 0;
  top: 0;
  background: #fff;
  padding: 10px;
  z-index: 10;
}

.header-address-info.active .header-address-info__popup {
  display: block;
  box-shadow: 0 0 5px #f0f0f0;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.address-detail {
  margin-bottom: 10px;
}

*>.address-detail:last-child {
  margin-bottom: 0;
}

.address-detail__label {
  font-size: 14px;
  font-weight: 700;
  color: #2C5084;
  text-transform: uppercase;
}

.address-detail__address {
  font-size: 14px;
}

.header-address-info__trigger {
  position: relative;
  width: max-content;
  padding-right: 15px;
}

.header-address-info__trigger::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 1px;
  border: solid 3px transparent;
  border-top: solid 7px #2c5084;
  top: 35%;
  right: 0;
}

.top-header-link {
  text-decoration: none;
  color: #2c5084;
  font-weight: 500;
  font-size: 13px;
}

.top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 10px;
  border-bottom: solid 1px #f0f0f0;
}

.top-header__term {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #333333;
}


.top-header__contacts-tel {
  text-decoration: none;
  color: #2C5084;
  font-size: 14px;
  font-weight: 900;
  text-align: right;
}

.top-header__contacts {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-header__contacts-link {
  font-weight: 500;
  font-size: 13px;
}

.main-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
}

.main-menu__item {
  position: relative;
}

.main-menu__link {
  text-decoration: none;
  color: #2c5084;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: 0.3s;
}

.main-menu__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  border-top: 3px solid #2c5084;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
  padding: 10px 0;
  z-index: 10;
}

.main-menu__item:hover .main-menu__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-menu__link>svg {
  width: 10px;
  fill: #2c5084;
  transition: 0.3s;
}


.main-menu__dropdown a {
  display: block;
  padding: 8px 20px;
  text-decoration: none;
  color: #333333;
  font-size: 13px;
  transition: 0.2s;
}

.main-menu__dropdown a:hover {
  background: #f8f9fa;
  color: #2C5084;
  padding-left: 25px;
}

.main-menu__dropdown.wide {
  min-width: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding: 25px;
  left: auto;
  right: 0;
}

.main-menu__dropdown-title {
  color: #2C5084;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
  margin-bottom: 10px;
  display: block;
}


.bottom-header__search input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 13px;
  width: 100%;
  padding: 1px;
}

.bottom-header__search form {
  display: flex;
  align-items: center;
  background: #f2f4f7;
  border-radius: 4px;
  padding: 6px 12px;
  width: 160px;
}

.bottom-header__search svg {
  height: 16px;
  fill: #2c5084;
  flex-shrink: 0;
}

.bottom-header__buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  padding-right: 10px;
  min-width: max-content;
}

.button {
  padding: 10px 15px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  transition: 0.3s;
  white-space: nowrap;
}

.button--bordered {
  border: 2px solid #2c5084;
  color: #2C5084;
}

.button--bordered:hover {
  color: #fff;
  background: #2C5084
}

.button--red {
  background: #DC4C3C;
  color: white;
  border: 2px solid #DC4C3C;
}


.button--red:hover {
  background: #b53a2d;
  border-color: #b53a2d;
  box-shadow: 0 4px 12px rgba(220, 76, 60, 0.3);
  color: #fff;
}

.flex-column {
  flex-direction: column;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.popup {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -999;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: .2s;
}

#popup-page-develop.popup {
  background: rgba(44, 80, 132, 0.8);
  backdrop-filter: blur(8px);
  padding: 20px;
}

.popup.active {
  visibility: visible;
  z-index: 999;
  opacity: 1;
}

.popup.active .popup__window {
  animation: 0.5s ease-out modalFadeIn;
}


.popup__window {
  border-radius: 20px;
  padding: 45px 35px;
  background: #fff;
  width: 100%;
  max-width: 480px;
  border-top: 6px solid var(--accent-red);
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  text-align: center;
}


.popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: medium;
  cursor: pointer;
  z-index: 10;
}

.popup__close svg {
  width: 20px;
  height: 20px;
  stroke: rgb(187, 187, 187);
  transition: 0.3s;
}


.page-dev {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-dev__logo {
  max-width: 130px;
}

.page-dev__title {
  color: #2C5084;
  font-size: 26px;
  font-weight: 600;
  margin: 0px 0px 15px;
}

.page-dev__text {
  color: rgb(90, 107, 130);
  font-size: 14px;
  line-height: 1.6;
}

.page-dev__bg .truck-bg {
  position: absolute;
  bottom: -20px;
  right: -40px;
  width: 320px;
  height: auto;
  fill: #2C5084;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}

.page-dev__form .input-group {
  width: 100%;
}

.page-dev__form .input-group input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #eef2f6;
  border-radius: 10px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
  background: #fcfdfe;
}

.page-dev__form .consent-wrap {
  margin: 18px 0;
}

.page-dev__form .consent-wrap label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  font-size: 11px;
  color: #8c98a9;
  line-height: 1.4;
}

.page-dev__form .consent-wrap .wpcf7-list-item {
  margin: 0;
}

.page-dev__form .consent-wrap input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #2C5084;
  flex-shrink: 0;
}

.page-dev__form .submit-wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.page-dev__form input[type="submit"] {
  background: #DC4C3C;
  color: white;
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}

.page-dev__form input[type="submit"]:hover {
  background: #c54335;
  box-shadow: 0 8px 25px rgba(220, 76, 60, 0.35);
  transform: translateY(-2px);
}

.page-dev__form .wpcf7 form .wpcf7-response-output {
  margin: 0;
}


/* Базовый контейнер */
.delivery-terms {
  padding: 60px 0;
}

.delivery-terms .section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-blue);
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

/* Красная линия под заголовком */
.delivery-terms .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--color-red);
}

.delivery-terms .terms-grid {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

/* Общие стили карточек */
.delivery-terms .term-card {
  flex: 1;
  background: var(--color-bg);
  border: 1px solid #eeeeee;
  padding: 40px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  /* Скрываем вылезающий водяной знак */
  z-index: 1;
}

.delivery-terms .term-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(12, 76, 172, 0.08);
  border-color: rgba(12, 76, 172, 0.3);
}

/* Шапка карточки: Цифры слева, Иконка справа */
.delivery-terms .card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}

.delivery-terms .term-days {
  font-size: 52px;
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1;
}

.delivery-terms .term-days span {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin-left: 2px;
}

/* Подложка для иконки */
.delivery-terms .icon-box {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: rgba(12, 76, 172, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.delivery-terms .term-card:hover .icon-box {
  transform: scale(1.05);
  background-color: rgba(12, 76, 172, 0.12);
}

.delivery-terms .icon-box svg {
  width: 32px;
  height: 32px;
  fill: var(--color-blue);
}

/* Специфика карточки срочной доставки (красная) */
.delivery-terms .term-card.urgent {
  border-left: 4px solid var(--color-red);
}

.delivery-terms .term-card.urgent:hover {
  border-color: var(--color-red);
}

.delivery-terms .urgent .term-days {
  color: var(--color-red);
}

.delivery-terms .urgent .icon-box {
  background-color: rgba(220, 76, 60, 0.08);
}

.delivery-terms .term-card.urgent:hover .icon-box {
  background-color: rgba(220, 76, 60, 0.12);
}

.delivery-terms .urgent .icon-box svg {
  fill: var(--color-red);
}

/* Текстовое описание */
.delivery-terms .term-description {
  font-size: 14px;
  line-height: 1.6;
  color: #4a4a4a;
  z-index: 2;
  /* Поверх водяного знака */
}

/* Фоновый водяной знак (Watermark) */
.delivery-terms .watermark-icon {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  fill: var(--color-blue);
  opacity: 0.03;
  /* Очень слабая видимость */
  z-index: -1;
  transition: transform 0.5s ease, opacity 0.5s ease;
  pointer-events: none;
}

.delivery-terms .term-card:hover .watermark-icon {
  transform: scale(1.1) rotate(-5deg);
  opacity: 0.05;
}

.delivery-terms .urgent .watermark-icon {
  fill: var(--color-red);
}

/* АДАПТИВНОСТЬ */
@media (max-width: 992px) {
  .delivery-terms .terms-grid {
    flex-direction: column;
  }

  .delivery-terms .term-card {
    padding: 30px;
  }

  .delivery-terms .watermark-icon {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 576px) {
  .delivery-terms .section-title {
    font-size: 24px;
  }

  .delivery-terms {
    padding: 40px 0;
  }

  .delivery-terms .term-days {
    font-size: 42px;
  }

  .delivery-terms .icon-box {
    width: 55px;
    height: 55px;
  }

  .delivery-terms .icon-box svg {
    width: 26px;
    height: 26px;
  }
}

.process-section {
  padding: 100px 0;
  background: #f8fafc;
  --primary-blue: #2C5084;
  --accent-red: #DC4C3C;
  --bg-page: #ffffff;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --line-color: #e2e8f0;
  --font-main: 'Poppins', sans-serif;
}

.process-section .section-header {
  text-align: center;
  margin-bottom: 70px;
}

.process-section .section-title {
  color: var(--primary-blue);
  font-size: 34px;
  font-weight: 700;
  margin: 0 0 15px;
}

.process-section .section-subtitle {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.process-section .process-section-overflow {
  overflow-x: scroll;
  padding: 10px 0;
}

/* Контейнер таймлайна */
.process-section .timeline-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  min-width: max-content;
  gap: 10px;
}

/* Соединительная линия на фоне */
.process-section .timeline-wrapper::before {
  content: '';
  position: absolute;
  top: 40px;
  /* Центр иконок */
  left: 5%;
  width: 90%;
  height: 4px;
  background: var(--line-color);
  z-index: 1;
  border-radius: 2px;
}

/* Интерактивная линия прогресса (заполняется при наведении) */
.process-section .progress-line {
  position: absolute;
  top: 40px;
  left: 5%;
  width: 0;
  height: 4px;
  background: var(--accent-red);
  z-index: 2;
  transition: width 0.4s ease;
  border-radius: 2px;
}

/* Карточка шага */
.process-section .step-item {
  position: relative;
  z-index: 3;
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: default;
}

/* Иконка шага */
.process-section .step-icon {
  width: 80px;
  height: 80px;
  background: #ffffff;
  border: 4px solid var(--line-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  position: relative;
}

.process-section .step-icon svg {
  width: 34px;
  height: 34px;
  stroke: var(--primary-blue);
  stroke-width: 1.5;
  fill: none;
  transition: all 0.4s ease;
}

/* Номер шага (возле иконки) */
.process-section .step-num {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 28px;
  height: 28px;
  background: var(--primary-blue);
  color: #ffffff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #ffffff;
  transition: 0.4s;
}

/* Текстовый контент */
.process-section .step-content {
  background: #ffffff;
  padding: 20px 15px;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
  width: 100%;
}

.process-section .step-content h4 {
  color: var(--primary-blue);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px;
  line-height: 1.3;
}

.process-section .step-content p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

/* --- ИНТЕРАКТИВ (HOVER ЭФФЕКТЫ) --- */

.process-section .step-item:hover .step-icon {
  border-color: var(--accent-red);
  background: var(--accent-red);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(220, 76, 60, 0.3);
}

.process-section .step-item:hover .step-icon svg {
  stroke: #ffffff;
}

.process-section .step-item:hover .step-num {
  background: var(--accent-red);
  transform: scale(1.1);
}

.process-section .step-item:hover .step-content {
  transform: translateY(5px);
  border-color: var(--accent-red);
  box-shadow: 0 15px 30px rgba(44, 80, 132, 0.08);
}

/* Заполнение линии прогресса через CSS */
.process-section .timeline-wrapper:has(.step-item:nth-child(1):hover) .progress-line {
  width: 0%;
}

.process-section .timeline-wrapper:has(.step-item:nth-child(2):hover) .progress-line {
  width: 25%;
}

.process-section .timeline-wrapper:has(.step-item:nth-child(3):hover) .progress-line {
  width: 50%;
}

.process-section .timeline-wrapper:has(.step-item:nth-child(4):hover) .progress-line {
  width: 75%;
}

.process-section .timeline-wrapper:has(.step-item:nth-child(5):hover) .progress-line {
  width: 90%;
}





.dfaq-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dfaq__questions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dfaq__header {
  font-size: 32px;
  margin-bottom: 30px;
  margin-top: 0;
}

.dfaq {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.dfaq__title {
  min-height: 70px;
  padding: 10px 20px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  background: #f5f5f5;
  cursor: pointer;
}

.dfaq__title::after {
  content: "\002B";
  display: flex;
  flex: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background-color: #DC4C3C;
  border-radius: 50px;
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  transition: 0.2s ease-in-out;
  transition-property: color, background-color;
  line-height: 1;
  padding-bottom: 3px;
}

.dfaq__answer {
  transition-duration: 0.2s;
  overflow: hidden;
  display: grid;
  grid-template-rows: 0fr;
}

.dfaq__text {
  padding: 0 20px;
  overflow: hidden;
  transition-duration: .2s;
}

.dfaq.opened .dfaq__title::after {
  content: "\2212";
}

.dfaq.opened .dfaq__answer {
  grid-template-rows: 1fr;
}

.dfaq.opened .dfaq__text {
  padding: 20px;
}

.bottom-header__burger {
  display: none;
}

@media (max-width: 1200px) {

.main-menu__link>svg {
  width: 30px;
  fill: #2c5084;
  transition: 0.3s;
}

.bottom-header__menu {
  position: relative;
}

.menu-close {
  position: absolute;
  top: 0;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
  color: #2c5084;
  user-select: none;
  transition: color 0.2s;
  z-index: 999999;
}

.menu-close:hover {
  color: #ff0000;
}


  .main-menu__dropdown.wide {
    max-width: 600px;
        min-width: unset;
  }

   .bottom-header__burger {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform .35s ease;
    overflow: hidden;
  }

  nav.active {
    transform: translateX(0);
  }

  .main-menu {
    position: relative;
    height: 100%;
    margin: 0;
    padding: 20px 0 0;
    list-style: none;
    display: block;
  }

  .main-menu__item {
    border-bottom: 1px solid #eee;
  }

  .main-menu__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    text-decoration: none;
    color: #222;
  }

  /* Подменю как отдельный экран */
  .main-menu__dropdown {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    transform: translateX(100%);
    transition: transform .35s ease;
    display: flex;
    flex-direction: column;
    z-index: 10;
    overflow-y: auto;
    display: none;
  }
.main-menu__dropdown.wide {
  display: none;
}

  .main-menu__dropdown.active {
    transform: translateX(0);
    display: flex;
  }

  .main-menu__dropdown a {
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #222;
  }

  .menu-back {
    height: 56px;
    border: none;
    text-align: left;
    padding: 20px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
  }

  /* Для блока "Для клиентов" */
  .main-menu__dropdown.wide > div {
    margin-bottom: 20px;
  }
  .main-menu__dropdown-title {
    display: block;
    padding: 15px 20px;
    font-weight: 700;
    background: #fafafa;
  }







  .bottom-header__buttons {
    justify-content: flex-end;

  }
  .bottom-header__burger {
    display: flex;
    width: 40px;
    height: 40px;
    border: 2px solid #2c5084;
    flex-direction: column;
    justify-content: space-between;
    gap: 5px;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;

  }

  .bottom-header__burger span {
    display: block;
    width: 100%;
    height: 4px;
    background: #2c5084;
    border-radius: 1px;
  }

  .bottom-header__search form {
    margin-left: auto;
  }

  .bottom-header__search {
    padding: 0 20px;
  }
}

@media (max-width: 1024px) {
  .bottom-header .elementor-container {
    display: flex;
  }

  .bottom-header__search {
    flex: 1;
    width: auto !important;
  }

  .bottom-header__buttons-wrapper {
    width: max-content !important;
  }
}


@media (max-width: 680px) {
  .top-header__term {
    display: none;
  }
}

@media (max-width: 480px) {
  .top-header__contacts-link {
    display: none;
  }
}

.reviews {
  padding: 20px 0;
}

.reviews__item {
  padding: 20px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
  border-radius: 16px;
  background: #fff;
}

.reviews__author {
  font-weight: 700;
  margin-bottom: 10px;
}


.slider-v1 .slick-list {margin: 0 -5px;}
.slider-v1 .slick-slide>div {padding: 0 5px;}

.slider-v1 .slick-track {
  display: flex;
  align-items: stretch;
}

.slider-v1 .slick-slide {
  height: auto;
}

.reviews--slider .reviews__item, 
.slider-v1 .slick-slide>div {
  height: 100%;
}

.slider-v1 .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 5px;
  font-size: 0;
  margin-top: 20px;
  padding-left: 0;
}

.slider-v1 .slick-dots button {
  font-size: inherit;
  padding: 0;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  transition-duration: 0.2s;
}

.slider-v1 .slick-active button{
  width: 15px; 
  background: #2e5285;
}


/* Базовые стили секции */
.bglc-cargo-section {
    width: 100%;
    background-color: #F8F9FA; /* Легкий фон секции для выделения белых карточек, как на скринах */
    padding: 60px 0;
    font-family: 'Open Sans', sans-serif;
}

.bglc-container {
    max-width: 1131px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Заголовки */
.bglc-section-title {
    text-align: center;
    color: #0C4CAC;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.bglc-section-subtitle {
    text-align: center;
    color: #4A5568;
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 40px 0;
}

/* Сетка карточек */
.bglc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Дизайн карточки */
.bglc-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    cursor: default;
}

/* Интерактив (Hover) - ИЗМЕНЕНО: Красный заменен на Зеленый */
.bglc-card:hover {
    border-color: #28A745; /* Зеленый цвет границы */
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.12); /* Зеленый оттенок тени */
    transform: translateY(-5px);
}

/* Иконки */
.bglc-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(12, 76, 172, 0.08); /* Светло-синий фон по умолчанию */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #0C4CAC; /* Синий цвет иконки по умолчанию */
    transition: all 0.3s ease;
}

/* ИЗМЕНЕНО: Красный фон при наведении заменен на Зеленый */
.bglc-card:hover .bglc-icon-wrapper {
    background-color: #28A745; /* Зеленый фон иконки */
    color: #FFFFFF; /* Белая иконка на зеленом фоне */
}

.bglc-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

/* Текст карточки */
.bglc-card-text {
    color: #2D3748;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    margin: 0;
}

/* Адаптивность */
@media (max-width: 992px) {
    .bglc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
     .bottom-header__search form {
    width: 100%;
}

.button {
      padding: 10px 4px;
}

    .bottom-header__buttons {
        margin-top: 20px;
    }
    .bglc-grid { grid-template-columns: 1fr; }

        .bottom-header .elementor-container {
        justify-content: flex-end;
    }
}





.process-section--7:has(.step-item:nth-child(1):hover) .progress-line {
  width: 0%;
}

.process-section--7:has(.step-item:nth-child(2):hover) .progress-line {
  width: 25%;
}

.process-section--7:has(.step-item:nth-child(3):hover) .progress-line {
  width: 40%;
}

.process-section--7:has(.step-item:nth-child(4):hover) .progress-line {
  width: 60%;
}

.process-section--7:has(.step-item:nth-child(5):hover) .progress-line {
  width: 75%;
}

.process-section--7:has(.step-item:nth-child(6):hover) .progress-line {
  width: 95%;
}

.process-section--7:has(.step-item:nth-child(7):hover) .progress-line {
  width: 115%;
}

.process-section--7 .process-section-overflow {
  position: relative;
}

.process-section--7 .progress-line {
  top: 50px;
}
.process-section--slider {
  position: relative;
}

.process-section--slider__btns {
  position: absolute;
  top: 50%;
  display: flex;
  justify-content: space-between;
  width: 100%;
  transform: translateY(-50%);
  z-index: 10;
  height: 0px;
  overflow-y: visible;
}

.process-section--slider .process-section-overflow {
  scroll-behavior: smooth;
  /* hide scrollbacr */
  scrollbar-width: none; 
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  
}

.process-section--slider__prev,
.process-section--slider__next {
  border-radius: 50%;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F8FAFC;
}

.process-section--slider__prev::before,
.process-section--slider__next::before {
  content: '';
  width: 20px;
  height: 20px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
}

.process-section--slider__prev::before {
  background-image: url(/wp-content/themes/royal-elementor-kit/assets/icons/arrow-left-blue.svg);
}

.process-section--slider__prev:hover::before {
  background-image: url(/wp-content/themes/royal-elementor-kit/assets/icons/arrow-left-white.svg);
}


.process-section--slider__next::before {
  background-image: url(/wp-content/themes/royal-elementor-kit/assets/icons/arrow-right-blue.svg);
}
.process-section--slider__next:hover::before {
  background-image: url(/wp-content/themes/royal-elementor-kit/assets/icons/arrow-right-white.svg);
}
