    /* Reset & Box‐Sizing */
     *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
/* =========================
   Redo – New Brand Tokens
========================= */
:root{
  --redo-orange: #ff6b35;
  --redo-orange-hover: #ff5520;

  --redo-ink: #0f172a;
  --redo-muted: #64748b;

  --redo-border: #e5e7eb;
  --redo-surface: #ffffff;

  --redo-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
}
/* =========================
   Base + Background
========================= */
body {
  font-family: Arial, sans-serif;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  background: url('my-background.jpg') no-repeat center center;
  background-size: cover;
  background-position: center;

  align-items: center;
  min-height: 100vh;
  margin: 0;
  position: relative;
  z-index: 0;
}

/* Warm orange + dark hero overlay */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255,107,53,0.28),
      rgba(2,6,23,0.55)
    );
  pointer-events: none;
  z-index: -1; /* 🔑 prevents dimming of timer + UI */
}

    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 70px;
      background: #ffffff;
      display: flex;
      align-items: center;
      padding: 0 20px;
      z-index: 1000;
    }
    .navbar img {
      height: 50px;
    }

    /* Header */
    h1 {
      margin: 115px 0 10px;
      color: #fff;
      font-size: 2.5rem;
      text-align: center;
    }
    p.headline {
      color: #fff;
      font-size: 1.2rem;
      margin-bottom: 20px;
      text-align: center;
    }

    /* Timer Banner */
    #timerDisplay {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(255, 255, 255, .85);
      padding: 10px 20px;
      border-radius: 12px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, .12);
      max-width: 600px;
      width: 90%;
      margin-bottom: 30px;
    }
    #timerDisplay span:first-child {
      flex: 1;
      color: #2E3B4E;
      font-size: 16px;
    }
    #countdownDisplay {
      background: #ff6b35;
      color: #fff;
      font-weight: 700;
      padding: 10px 15px;
      border-radius: 8px;
      font-size: 24px;
      text-align: center;
    }

    /* Steps */
    .step {
      display: none;
      width: 90%;
      max-width: 600px;
      margin-bottom: 40px;
    }
    .step.active {
      display: block;
    }

    /* Card */
    .form-card {
      background: #fff;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
      width: 100%;
    }
    .form-card h2 {
      font-size: 1.4rem;
      margin-bottom: 20px;
      color: #000;
    }

    /* Icon Grid */
    .icon-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}

.icon-item:hover {
  background: rgba(255,107,53,0.08);
  transform: translateY(-1px);
}

.icon-item i {
  font-size: 40px;
  color: var(--redo-orange);
}

.icon-item span {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 600;
  color: var(--redo-ink);
}

.icon-item[data-value="Sinks"] {
  grid-column: 2;
}

    /* Dynamic Options */
    #options-container button {
      width: 100%;
      margin: 6px 0;
      padding: 12px;
      border: none;
      border-radius: 5px;
      background: #ff6b35;
      color: #fff;
      cursor: pointer;
      font-size: 14px;
    }
    #options-container button:hover {
      background: #c25e3a;
    }

    /* Textarea */
    textarea#dynArea {
      width: 100%;
      height: 120px;
      padding: 10px;
      font-size: 15px;
      border: 1px solid #ccc;
      border-radius: 5px;
      margin-bottom: 8px;
    }

    /* Navigation Buttons */
    .btn {
      padding: 10px 22px;
      border: none;
      border-radius: 5px;
      font-size: 14px;
      cursor: pointer;
    }
    .btn:disabled {
      background: grey;
      color: #ccc;
      cursor: not-allowed;
    }
    .btn-prev {
      background: #6c757d;
      color: #fff;
    }
    .btn-prev:hover {
      background: #5a6268;
    }
    .btn-next,
    .btn-submit {
      background: #ff6b35;
      color: #fff;
    }
    .btn-next:hover,
    .btn-submit:hover {
      background: #c25e3a;
    }

    /* Inputs */
    .form-card input:not([type="checkbox"]) {
      width: 100%;
      padding: 12px;
      font-size: 15px;
      border: 1px solid #ccc;
      border-radius: 5px;
      margin-bottom: 16px;
    }
    .consentPage label {
      font-size: 14px;
    }
    body.noscroll {
  overflow: hidden !important;
}
