.offroad-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.offroad-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.offroad-modal-content {
  position: relative;
  width: 90%;
  max-width: 450px;
  max-height: 85vh;
  overflow-y: auto;
  background: url('/themes/child_leo_bikys/assets/img/bg_offroad.jpeg') no-repeat;
  border-radius: 12px;
  padding: 180px 30px 20px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  background-size: cover;
}

@media (max-width: 767px) {
  .offroad-modal-content {
    max-height: 95vh;
    padding: 120px 20px 15px;
    border-radius: 0;
  }
  .offroad-header .title {
    font-size: 22px;
  }
  .offroad-header p,
  .offroad-icon-text {
    font-size: 15px;
  }
  .offroad-submit-btn {
    font-size: 18px;
  }
  .offroad-close-btn {
    top: 10px;
    right: 15px;
    font-size: 28px;
    z-index: 1;
  }
}

.offroad-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  opacity: 0.8;
}
.offroad-close-btn:hover {
  opacity: 1;
}

.offroad-header .title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1.2;
  color: #fff;
}
.offroad-header p {
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 1.4;
}
.offroad-icon-text {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 20px;
  margin-bottom: 30px;
}

.offroad-icon-text span.material-icons {
  color: #8a191d;
}

.offroad-input {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
}

.offroad-submit-btn {
  width: 100%;
  padding: 15px;
  background-color: #a82024;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 20px;
  transition: background-color 0.2s;
}

.offroad-submit-btn:hover {
  background-color: #8a191d;
}

.offroad-footer {
  text-align: center;
  font-size: 11px;
  color: #ccc;
}

#offroad-survey-form input {
  height: auto
}
#offroad-survey-form label {
  display: flex;
  align-items: center;
  gap: 10px;
}