    /* =========================
   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 Styles =========== */
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 */
}

    /* Container that holds each step or "page" */
    .container {
      width: 100%;
      max-width: 600px;
      background: #fff;
      padding: 20px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      margin-top: 30px; /* push down below fixed navbar */
    }

    .step {
      display: none;  /* only one step is active at a time */
    }
    .step.active {
      display: block;
    }

    h1 {
      font-family: 'Helvetica Neue', sans-serif;
      color: #f0f0f0;
      text-align: center;
      font-size: 3rem;
      font-weight: bold;
      letter-spacing: 0.05em;
      line-height: 1.2;
      word-break: break-word;
      margin-top: 120px; /* push down below navbar; adjust as needed */
      margin-bottom: 10px;
    }
    p {
      font-size: 1.5rem;
      color: #ffffff;
      text-align: center;
      line-height: 1.6;
      margin: 0 10px;
      margin-bottom: 20px;
    }

    /* =========== Navbar =========== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 24px;
  background: linear-gradient(to bottom, #ffffff 0%, #f9fafb 100%);
  border-bottom: 1px solid rgba(229,231,235,0.9);
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  z-index: 1000;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(15,23,42,0.06);
}

.navbar img {
  width: 170px;
  padding-left: 24px;
}

    /* =========== Grid for the "service choices" step =========== */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 18px;
}

.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;
}

    .buttons {
      display: flex;
      justify-content: space-between;
      margin-top: 20px;
    }
    .buttons button {
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 14px;
    }

    /* “Greyed out” for all disabled buttons */
    button:disabled {
      background-color: #ccc !important;
      color: #666 !important;
      cursor: not-allowed;
      pointer-events: none;
    }

    .buttons .previous {
      background-color: #6c757d;
      color: white;
    }
    .buttons .previous:hover {
      background-color: #5a6268;
    }
    .buttons .next {
      background-color: #ff6b35;
      color: white;
    }
    .buttons .next:hover {
      background-color: #ff6b35;
    }
    .buttons .submit {
      background-color: #ff6b35;
      color: white;
    }
    .buttons .submit:hover {
      background-color: #ff6b35;
    }
    

    /* =========== Consent / Submit Button =========== */
    .consent {
      margin-top: 20px;
      padding: 10px 20px;
      font-size: 16px;
      border: none;
      border-radius: 5px;
      background-color: #ff6b35;
      color: white;
      cursor: pointer;
    }
    .consent:hover {
      background-color: #ff6b35;
    }
    .submit-address {
      background-color: #ff6b35;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      cursor: pointer;
      font-size: 14px;
    }
    .submit-address:hover {
      background-color: #ff6b35;
    }

    /* =========== Inputs =========== */
    #options-container button {
      padding: 15px;
      background-color: #ff6b35;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      text-align: center;
      font-size: 14px;
      margin: 5px;
      width: 100%;
    }
    #options-container button:hover {
      background-color: #ff6b35;
    }

    /* Error style */
    .error-message {
      color: red;
      font-size: 14px;
      margin-top: 5px;
      display: none;
    }

    /* =========== Responsive Media Queries =========== */
    @media (max-width: 600px) {
      .container {
        margin-top: 20px;
        width: 95%;
        padding: 10px;
      }
      .navbar {
        justify-content: center;
        height: 60px;
      }
      .navbar img {
        width: 120px;
        padding-left: 0;
      }
      h1 {
        font-size: 2rem;
        margin-top: 70px;
      }
      p {
        font-size: 1rem;
        margin: 0 5px 20px;
      }
      .icon-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
      }
      .buttons button,
      .grid button,
      .submit-address,
      .consent,
      #options-container button {
        font-size: 14px;
        padding: 10px;
      }
      #question-text {
        font-size: 1.1rem;
      }
    }
    /* ===== 5‑Minute “Skip the Line” Timer ===== */
    #timerDisplay {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: rgba(255,255,255,0.8);
      border-radius: 12px;
      padding: 10px 20px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      font-family: Arial, sans-serif;
      max-width: 600px;
      margin: 20px auto;
    }
    #timerDisplay span:first-child {
      font-size: 15px;
      color: #2E3B4E;
      flex: 1;
      padding: 10px 5px;

    }
    #countdownDisplay {
      font-size: 24px;
      font-weight: bold;
      color: #ffffff;
      background-color: #ff6b35;
      padding: 10px 15px;
      border-radius: 8px;
      text-align: center;
    }
