footer {
  background: #0d0d0d;
  padding: 80px 0 48px;
}
footer .footer-desc {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.9;
  max-width: 340px;
}
footer .footer-lang {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
}
footer .footer-lang .lang-btn {
  font-size: 0.65rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.25rem 0.6rem;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
footer .footer-lang .lang-btn.active {
  background: #b5001e;
  color: #fff;
  border-color: #b5001e;
}
footer .footer-section-title {
  font-family: "Inter 28pt", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
footer .footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-list li {
  margin-bottom: 0.75rem;
}
footer .footer-list li a {
  font-family: "Inter 28pt", sans-serif;
  font-size: 0.83rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s;
}
footer .footer-list li a:hover {
  color: #fff;
}
footer .footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
footer .footer-bottom .footer-copyright {
  font-family: "Inter 28pt", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.04em;
}
footer .footer-bottom .footer-locations {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
footer .footer-bottom .footer-locations .dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #b5001e;
  opacity: 0.7;
}
footer .footer-bottom .footer-locations .location-text {
  font-family: "Inter 28pt", sans-serif;
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.08em;
}

.back-to-top {
  position: fixed;
  right: 2.2rem;
  bottom: 2.2rem;
  z-index: 100;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: #b5001e;
  color: #fff;
  box-shadow: 0 6px 24px rgba(181, 0, 30, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateY(30px);
  cursor: pointer;
}
.back-to-top svg {
  display: block;
  width: 24px;
  height: 24px;
}
.back-to-top svg circle {
  fill: #fff;
  opacity: 0.18;
}
.back-to-top svg path {
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/*# sourceMappingURL=footer.css.map */
