/* ─── Footer ─── */

.footer {
  background-color: var(--color-bg-section);
  padding: 60px 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 37px;
}

.footer__top {
  display: flex;
  gap: 124px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 221px;
  flex-shrink: 0;
}

.footer__logo img {
  width: 100%;
  height: 67px;
  object-fit: contain;
  object-position: left;
}

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

.footer__contact-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: var(--font-size-md);
  font-weight: 400;
  line-height: 1.14;
}

.footer__contact-item img {
  width: 22px;
  height: 24px;
  flex-shrink: 0;
}

.footer__contact-item a {
  color: var(--color-text);
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__social-img {
  height: 33px;
  width: auto;
}

.footer__rating {
  display: flex;
  align-items: center;
}

.footer__rating-img {
  height: 51px;
  width: auto;
}

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

.footer__nav-column:first-of-type {
  width: 126px;
  flex-shrink: 0;
}

.footer__nav-column:last-of-type {
  width: 230px;
  flex-shrink: 0;
}

.footer__nav-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  line-height: 1.37;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav-list a {
  font-size: var(--font-size-base);
  font-weight: 400;
  color: var(--color-text);
  transition: color 0.3s ease;
}

.footer__nav-list a:hover {
  color: var(--color-primary);
}

.footer__addresses {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 251px;
  flex-shrink: 0;
}

.footer__address-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-gray-350);
}

.footer__address-card:last-child {
  border-bottom: none;
}

.footer__address-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: var(--font-size-base);
  line-height: 1.3;
}

.footer__address-item img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.footer__bottom {
  border-top: 1px solid var(--color-gray-350);
  padding-top: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 134px;
}

.footer__bottom-promo {
  display: flex;
  align-items: center;
}

.footer__gusarov-img {
  height: 20px;
  width: auto;
}

.footer__privacy {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
}

.footer__privacy a {
  color: var(--color-text-secondary);
}

.footer__privacy a:hover {
  color: var(--color-primary);
}
.mobile_nav{
  display: none;
  background-color: #025EBA;
  position: fixed;
  z-index: 99;
  bottom: 0;
  width: 100%;
}
.mobile_nav_bloks{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 65px;
}
/* ─── Burger (mobile) ─── */
.footer__burger {
      display: flex;
    width: 20px;
    height: 17px;
    gap: 7px;
    justify-content: space-between;
    padding: 0;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.footer__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  transition: transform 0.3s ease;
}
.mobile_nav_blok{
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  color: #FFF;
text-align: center;
font-size: 12px;
font-weight: 500;
    flex: 1;
}

@media (max-width: 1240px) {
.footer__top{gap: 20px;}
}

@media (max-width: 980px) {
  .footer__top{flex-wrap: wrap;}
}

/* ─── RESPONSIVE — 768px ─── */
@media (max-width: 768px) {
.mobile_nav{display: block;}
  .footer {
    padding: 50px 0;
  }

  .footer__top {
    gap: 30px;
  }

  .footer__brand {
    width: 100%;
  }

  .footer__logo img {
    width: 330px;
    height: 101px;
  }

  .footer__top {
    flex-wrap: wrap;
  }

  .footer__brand {
    order: 1;
    width: 100%;
  }

  .footer__addresses {
    order: 2;
    width: 100%;
  }

  .footer__nav-column {
    order: 3;
  }

  .footer__nav-column:first-of-type {
    width: 126px;
  }

  .footer__nav-column:last-of-type {
    width: 174px;
  }


  .footer__logo img {
    width: 100%;
    max-width: 330px;
    height: auto;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}

.pop-up-window {
  transition: all 0.4s;
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0px;
  top: 0px;
  backdrop-filter: blur(8px);
  opacity: 1;
  z-index: 449;
  background-color: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pop-up-window-content {
  width: 500px;
  border-radius: 6px;
  min-height: 500px;
  position: relative;
  display: flex;
  background: #fff;
  flex-direction: column;
  padding: 20px;
  align-items: center;
  justify-content: center;
}
.pop-up-window-content-close {
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 50%;
  background: #000;
  align-items: center;
  flex-direction: column;
  display: flex;
  position: absolute;
  right: -20px;
  top: -20px;
  cursor: pointer;
  font-weight: 100;
  font-size: 24px;
  justify-content: center;
  -webkit-user-select: none;
  user-select: none;
}
.pop-up-window-content-title {
  font-size: 40px;
  margin-bottom: 30px;
}
.pop-up-window-content form {
  display: flex;
  width: 100%;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}
.pop-up-window-content input {
  border: 0px solid #000;
  outline: none;
  border-bottom: 1px solid #000;
  padding: 10px;
  padding-left: 3px;
  width: 100%;
  width: 300px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 4px;
}
.pop-up-window-content button {
  width: 169px;
  height: 40px;
  transition: all 0.3s;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: rgba(2, 94, 186, 1);
  font-weight: 600;
  border: 1px solid rgba(2, 94, 186, 1);
}
.pop-up-window-content button:hover {
  color: rgba(2, 94, 186, 1);
  background-color: #fff;
}
.pop-up-window-none {
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}
.applicationForJS {
}
.urlJSF {
  display: none;
}
.pop-up-window-content input {
  width: 74%;
}
@media (max-width: 767px) {
  .pop-up-window-content {
    width: 400px;
    min-height: 400px;
    padding: 15px;
  }
  .pop-up-window-content-title {
    font-size: 34px;
    margin-bottom: 20px;
  }
}
@media (max-width: 500px) {
  .pop-up-window-content {
    width: 276px;
    min-height: 300px;
  }
  .pop-up-window-content-title {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .pop-up-window-content input {
    width: 94%;
  }
  .pop-up-window-content-close {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }
}
.thank-you-pop {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
  transition: all 0.4s;
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0px;
  top: 0px;
  backdrop-filter: blur(8px);
  opacity: 1;
  z-index: 449;
  background-color: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.thank-you-pop-content {
  width: 500px;
  border-radius: 6px;
  min-height: 0px;
  position: relative;
  display: flex;
  background: #fff;
  flex-direction: column;
  padding: 20px;
  align-items: center;
  justify-content: center;
}
.thank-you-pop-content .pop-up-window-content-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 0px;
}
.thank-you-pop-content-close {
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 50%;
  background: #000;
  align-items: center;
  flex-direction: column;
  display: flex;
  position: absolute;
  right: -20px;
  top: -20px;
  cursor: pointer;
  font-weight: 100;
  font-size: 24px;
  justify-content: center;
  -webkit-user-select: none;
  user-select: none;
}
.thank-you-pop-none {
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}