.site-form,
.offline-form {
  display: block;
  width: 100%;
  max-width: 100%;
}

.site-form__grid,
.offline-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.site-form__field,
.offline-form__field,
.site-form__select,
.offline-form__select,
.site-form__textarea,
.offline-form__textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 16px;
  line-height: 1.4;
  background: #fff;
  color: #111827;
}

.site-form__textarea,
.offline-form__textarea {
  min-height: 140px;
  resize: vertical;
}

.site-form__full,
.offline-form__full {
  grid-column: 1 / -1;
}

.site-form__contact,
.offline-form__contact {
  margin: 16px 0;
}

.site-form__label,
.offline-form__label {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

.site-form__radios,
.offline-form__radios {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-form__radio,
.offline-form__radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111827;
}

.site-form__actions,
.offline-form__actions {
  margin-top: 18px;
}

.site-form__button,
.offline-form__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  background: #de0808;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.site-form__note,
.offline-form__note {
  margin-top: 14px;
  font-size: 14px;
  color: #4b5563;
}

.site-scrolltop,
.offline-scrolltop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: #de0808;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 999;
}

.site-scrolltop.is-visible,
.offline-scrolltop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.site-nojs-hide,
.offline-nojs-hide {
  display: none !important;
}

.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 8px;
  transform: none !important;
}

.swiper-slide {
  flex: 0 0 min(351px, 85vw);
  scroll-snap-align: start;
  margin-right: 0 !important;
  width: auto !important;
}

.swiper-button-next,
.swiper-button-prev,
.swiper-pagination,
.swiper-scrollbar {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

.fa,
.fa-brands,
.fa-classic,
.fa-duotone,
.fa-light,
.fa-regular,
.fa-sharp,
.fa-sharp-solid,
.fa-solid,
.fab,
.fad,
.fal,
.far,
.fas,
.fat {
  font-style: normal;
  font-family: inherit !important;
}

.fa-phone::before {
  content: "\260E";
}

.fa-map-location-dot::before {
  content: "\1F4CD";
}

.fa-envelope::before,
.fa-envelopes::before {
  content: "\2709";
}

.fa-calendar-clock::before {
  content: "\1F4C5";
}

.fa-paper-plane::before {
  content: "\27A4";
}

.fa-arrow-right::before,
.fa-circle-chevron-right::before {
  content: "\2192";
}

.fa-arrow-up::before {
  content: "\2191";
}

.fa-chevron-down::before {
  content: "\25BE";
}

.fa-bars::before,
.fa-bars-staggered::before {
  content: "\2630";
}

.fa-facebook::before {
  content: "f";
  font-weight: 700;
}

.fa-pinterest::before {
  content: "P";
  font-weight: 700;
}

.fa-tiktok::before {
  content: "T";
  font-weight: 700;
}

.fa-vimeo::before {
  content: "V";
  font-weight: 700;
}

@media (max-width: 767px) {
  .site-form__grid,
  .offline-form__grid {
    grid-template-columns: 1fr;
  }

  .site-form__button,
  .offline-form__button {
    width: 100%;
  }
}
