
    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }
/* =========================
   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);
}
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 {
      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: 90px; /* 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: 3.5rem;
      letter-spacing: 0.05em;
      line-height: 1.2;
      font-weight: bold;
      word-break: break-word;
      margin-top: 120px;
      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;
}

    /* Step 1 grid (Category Selection) */
    .icon-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      justify-content: center;
      margin-top: 20px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
.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 */
    .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;
    }
    button:disabled {
      background-color: grey;
      color: #ccc;
      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: #c25e3a;
    }
    .buttons .submit {
      background-color: #ff6b35;
      color: white;
    }
    .buttons .submit:hover {
      background-color: #c25e3a;
    }
    
    #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 0;  /* small vertical gap */
      width: 100%;
    }
    #options-container button:hover {
      background-color: #c25e3a;
    }
    
    .error-message {
      color: red;
      font-size: 14px;
      margin-top: 5px;
      display: none;
    }
    
    /* Consent Page */
    .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: #c25e3a;
    }
    .consent:disabled {
      background-color: grey !important;
      cursor: not-allowed;
    }
    .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: #c25e3a;
    }

    /* Bigger textarea for project details */
    textarea#textarea-input {
      width: 100%;
      min-height: 120px;
      padding: 10px;
      font-size: 14px;
      border-radius: 4px;
      border: 1px solid #ccc;
    }

    /* Multi-select toggle styling */
    .multi-option-button.selected {
      background-color: #852f10 !important; /* highlight color when selected */
    }

    #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: 16px;
      color: #2E3B4E;
      flex: 1;
    }
    #countdownDisplay {
      font-size: 24px;
      font-weight: bold;
      color: #ffffff;
      background-color: #ff6b35;
      padding: 10px 15px;
      border-radius: 8px;
      text-align: center;
    }

    body.noscroll {
      overflow: hidden !important;
    }