/* =========================================================
   QUESTIONS CONTAINER
   ========================================================= */
.questions-container {
  background-image: url("images/1-hero-and-nav/SurveyBG.png");
  background-repeat: no-repeat;
  background-size: 100% 100%; /* FIT FULL IMAGE HEIGHT */
  background-position: right center;

  min-height: 900px;
  border-radius: 16px;
  padding: 64px 64px;

  position: relative;
  overflow: hidden;
}

.assessment-card {
  padding: 50px;
  overflow: visible;
}

/* =========================================================
   BACKGROUND OVERLAY
   ========================================================= */
.questions-container::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to right,
    rgba(6, 15, 20, 0.97) 0%,
    rgba(6, 15, 20, 0.92) 40%,
    rgba(6, 15, 20, 0.80) 60%,
    rgba(6, 15, 20, 0.65) 75%,
    rgba(6, 15, 20, 0.45) 90%,
    rgba(6, 15, 20, 0.30) 100%
  );

  z-index: 1;
  border-radius: 16px;
}

/* =========================================================
   QUESTION BLOCK
   ========================================================= */
.question-block {
  margin-bottom: 60px; /* Space between questions */
  position: relative;
  z-index: 2;
}

.question {
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 24px;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}

/* =========================================================
   OPTIONS GROUP
   ========================================================= */
.options-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* =========================================================
   CUSTOM RADIO BUTTON
   ========================================================= */
.custom-radio {
  display: flex;
  align-items: center;
  cursor: pointer;

  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 14px;

  transition: color 0.2s;
}

.custom-radio input {
  appearance: none;
  width: 22px;
  height: 22px;

  border: 1px solid #16c21f;
  border-radius: 50%;
  background: #141b1f;

  margin-right: 15px;
  display: grid;
  place-content: center;
  position: relative;
}

.custom-radio input:checked {
  border-color: #22c55e;
  background: #1b8f25;
}

.custom-radio input:checked::after {
  content: "✓";
  color: #ffffff;
  font-weight: bold;
  font-size: 14px;
}
.submit-analysis-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12%;
  gap: 10px;
  margin-top: 40px;
  padding: 16px 24px;
  background-color: #ffffff;
  color: #000000;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}

.submit-analysis-btn:hover {
  background-color: #f8f9fa;
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
}

.submit-analysis-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.button-svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
  color: #000000;
}

.submit-analysis-btn:hover .hero-button-svg {
  transform: translateX(3px);
}
/* =========================================================
   RESPONSIVE (≤768px)
   ========================================================= */
@media (max-width: 768px) {
  .questions-container {
    background-size: cover;
    background-position: center;
    padding: 40px 24px;
  }

  .questions-container::before {
    background: rgba(6, 15, 20, 0.92);
  }
}
