:root {
  --bg-1: #04130f;
  --bg-2: #0b241c;
  --bg-3: #0f2e23;
  --surface: rgba(11, 28, 22, 0.78);
  --glass: rgba(255,255,255,0.05);
  --muted: #cfd8d3;
  --accent: #ff983f;          /* orange tone like landing headings */
  --accent-strong: #f2d786;
  --accent-glow: rgba(242, 215, 134, 0.4);
}


 .completed-form {
      text-align: center;
      padding: 40px;
    }

    .completed-form .checkmark {
      width: 80px;
      height: 80px;
      margin: 0 auto 20px;
    }
    .completed-form .checkmark circle {
      fill: none;
      stroke-width: 4;
    }
    .completed-form .checkmark path {
      fill: none;
      stroke-width: 4;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .completed-form .thank-you {
      font-size: 28px;
      font-weight: 700;
      color: var(--color-text);
      margin-bottom: 8px;
    }

    .completed-form p {
      font-size: 16px;
      color: var(--color-text-secondary);
    }

.go-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 30px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff983f, #ffc86f);
  color: #0a1b13;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  box-shadow: 0 8px 24px rgba(255, 152, 63, 0.35);
  transition: all 0.25s ease;
}
.go-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 36px rgba(255, 152, 63, 0.55);
  filter: brightness(1.08);
}

.status-text {
  font-size:22px;
  font-weight:600;
  color: var(--color-text);
  margin-bottom:20px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  overflow: hidden; /* Remove scrollbars */
}



body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(224, 13, 13, 0.35), transparent 60%);
  mix-blend-mode: overlay;
  opacity: 0.18; /* reduce this to make it lighter, raise to make darker */
  animation: sway 24s ease-in-out infinite alternate;
  background-repeat: no-repeat;
  background-size: cover;
}




@keyframes sway {
  0% { background-position: 0 0; }
  100% { background-position: 100px 0; }
}

/* optional light shafts for realism */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(800px 400px at 30% -10%, rgba(255,255,200,0.06), transparent 70%),
              radial-gradient(1000px 600px at 80% -5%, rgba(255,240,170,0.04), transparent 80%);
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: 0.7;
}

*{box-sizing:border-box}
html,body{height:100%}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: var(--accent);
  overflow-x: hidden;
  background:
    radial-gradient(800px 400px at 20% 10%, rgba(255,255,255,0.03), transparent 60%),
    radial-gradient(800px 400px at 80% 20%, rgba(255,240,180,0.05), transparent 60%),
    linear-gradient(160deg, #3a0102 0%, #3a0308 40%, #5b0707 80%, #3e0304 100%);
  background-attachment: fixed;
  background-size: 600% 600%;
  animation: bgShift 36s ease-in-out infinite;
  position: relative;
}

@keyframes bgShift {
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}


@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

#particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}
.form-background {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  position: relative;
  z-index: 1;
}

.form-container {
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: var(--surface);
  border: 1px solid rgba(226,195,115,0.15);
  border-radius: 18px;
  box-shadow: 0 26px 60px rgba(0,0,0,0.55);
  padding: 42px;
  width: 90%;
  max-width: 600px;
  color: var(--muted);
}



.input-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 28px;
}

.question-text {
  color: var(--color-text);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: left;
  width: 100%;
  line-height: 1.4;
}


.answer-input,
.custom-select {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--color-border);
  outline: none;
  transition: all 0.3s ease;
}

.answer-input:focus,
.custom-select.open {
  border-color: var(--color-primary);
  box-shadow: 0 0 10px rgba(255,255,255,0.2);
  transform: scale(1.02);
}

.custom-select {
  position: relative;
  cursor: pointer;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--color-text-secondary);
  transition: 0.25s ease;
  width: 100%;
}

.custom-select .selected {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-select .arrow {
  border: solid var(--color-primary);
  border-width: 0 2px 2px 0;
  padding: 4px;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.custom-select.open .arrow {
  transform: rotate(-135deg);
}

.custom-select .options {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  background: rgba(28,28,30,0.95);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  list-style: none;
  box-shadow: 0 6px 20px rgba(0,0,0,.4);
  z-index: 5;
}

.custom-select.open .options {
  display: block;
}

.custom-select .options li {
  padding: 10px 14px;
  color: var(--color-text);
  transition: background 0.25s ease;
}

.custom-select .options li:hover {
  background: rgba(255,255,255,0.15);
}

.button-container {
  margin-top: 1vh;
}
.submit-btn {
  background: linear-gradient(135deg, #ff983f, #ffc86f);
  border: none;
  color: #0a1b13;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 8px 24px rgba(255, 152, 63, 0.35);
  letter-spacing: 0.3px;
}

.submit-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 36px rgba(255, 152, 63, 0.55);
  filter: brightness(1.08);
}


@media (max-height: 700px) {
  .form-container {
    justify-content: flex-start;
    padding-top: 40px;
  }
  .input-container {
    margin-bottom: 12px;
  }
  .question-text {
    font-size: 1rem;
  }
  .answer-input {
    padding: 0.5rem 0.7rem;
  }
}

.form-container {
  animation: fadeInUp 0.6s ease both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
