:root {
  --primary: #3f3b23;
  --secondary: #c2b779;
  --light: #EBE5C2;
  --bg: #F8F3D9;
  --text-muted: #7a7560;
  --white: #ffffff;
  --hero-bg: #4e4928;
  /* lighter than navbar */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--primary);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 66px;
  background: var(--primary);
  /* গাঢ় */
}

.logo {
  font-family: 'Fraunces', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--secondary);
  padding: 5px 16px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--secondary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* ── HERO ── */
.help-hero {
  background: var(--hero-bg);
  /* navbar থেকে হালকা */
  padding: 110px 60px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.help-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(194, 183, 121, 0.12);
  top: -160px;
  right: -100px;
}

.help-hero::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(194, 183, 121, 0.08);
  bottom: -100px;
  left: -60px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(194, 183, 121, 0.15);
  border: 1px solid rgba(194, 183, 121, 0.35);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.help-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.help-hero h1 em {
  font-style: italic;
  color: var(--secondary);
}

.help-hero p {
  color: rgba(235, 229, 194, 0.7);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* ── QUICK SELECT BUTTONS ── */
.quick-section {
  max-width: 780px;
  margin: 52px auto 0;
  padding: 0 24px;
  text-align: center;
}

.quick-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.quick-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 8px;
}

.quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: var(--white);
  border: 1.5px solid rgba(63, 59, 35, 0.15);
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.25s;
}

.quick-btn i {
  color: var(--secondary);
  font-size: 1rem;
}

.quick-btn:hover,
.quick-btn.selected {
  background: var(--primary);
  color: var(--secondary);
  border-color: var(--primary);
}

.quick-btn:hover i,
.quick-btn.selected i {
  color: var(--secondary);
}

/* ── FORM WRAPPER ── */
.form-wrapper {
  max-width: 700px;
  margin: 40px auto 80px;
  padding: 0 24px;
}

/* ── STEP INDICATOR ── */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}

.step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--light);
  border: 2px solid rgba(63, 59, 35, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}

.step-dot.active {
  background: var(--primary);
  color: var(--secondary);
  border-color: var(--primary);
}

.step-dot.done {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}

.step-line {
  width: 60px;
  height: 2px;
  background: rgba(63, 59, 35, 0.12);
  transition: background 0.3s;
}

.step-line.done {
  background: var(--secondary);
}

/* ── FORM CARD ── */
.form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(63, 59, 35, 0.10);
}

.step-panel {
  display: none;
}

.step-panel.active {
  display: block;
  animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(16px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.step-title {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  margin-bottom: 6px;
  color: var(--primary);
}

.step-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ── FORM FIELDS ── */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.input-wrap {
  position: relative;
}

.input-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1rem;
  pointer-events: none;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px 13px 42px;
  border: 1.5px solid rgba(63, 59, 35, 0.16);
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.93rem;
  color: var(--primary);
  background: var(--bg);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  appearance: none;
}

.form-group textarea {
  padding-left: 16px;
  height: 120px;
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(194, 183, 121, 0.18);
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* urgency radio */
.urgency-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.urgency-option {
  flex: 1;
  min-width: 90px;
}

.urgency-option input[type="radio"] {
  display: none;
}

.urgency-option label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 10px;
  border: 1.5px solid rgba(63, 59, 35, 0.15);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg);
}

.urgency-option label i {
  font-size: 1.3rem;
}

.urgency-option input:checked+label {
  border-color: var(--secondary);
  background: var(--light);
  color: var(--primary);
}

/* disability type option */
.dis-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.dis-option {
  flex: 1;
  min-width: 120px;
}

.dis-option input[type="radio"] {
  display: none;
}

.dis-option label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border: 1.5px solid rgba(63, 59, 35, 0.15);
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg);
  transition: all 0.25s;
}

.dis-option input:checked+label {
  border-color: var(--secondary);
  background: var(--light);
  color: var(--primary);
}

/* ── NAV BUTTONS ── */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  background: transparent;
  border: 1.5px solid rgba(63, 59, 35, 0.2);
  border-radius: 9px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s;
}

.btn-back:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-next {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  background: var(--primary);
  border: none;
  border-radius: 9px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--secondary);
  cursor: pointer;
  transition: all 0.28s;
}

.btn-next:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(63, 59, 35, 0.18);
}

/* ── SUCCESS STATE ── */
.success-state {
  display: none;
  text-align: center;
  padding: 20px 10px;
}

.success-state .check-circle {
  width: 80px;
  height: 80px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--secondary);
}

.success-state h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.success-state p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 380px;
  margin: 0 auto 28px;
}

/* ── EMERGENCY STRIP ── */
.emergency-strip {
  background: var(--primary);
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
}

.emergency-strip .em-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 4px;
}

.emergency-strip .em-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.em-divider {
  width: 1px;
  height: 40px;
  background: rgba(194, 183, 121, 0.2);
}

/* ── FOOTER ── */
.footer {
  background: #2a2810;
  color: rgba(235, 229, 194, 0.4);
  text-align: center;
  padding: 22px;
  font-size: 0.82rem;
}

/* লিঙ্কের সাধারণ সাদা রঙ */
.em-value a {
  color: white !important;
  text-decoration: none;
}

/* মাউস নিলে যে রঙ হবে (যেমন: গোল্ডেন বা হলুদ) */
.em-value a:hover {
  color: #2a2810 !important;
  text-decoration: underline;
}

/* error */
.field-error {
  font-size: 0.78rem;
  color: #c0392b;
  margin-top: 5px;
  display: none;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }

  .help-hero {
    padding: 100px 20px 50px;
  }

  .form-card {
    padding: 28px 20px;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .emergency-strip {
    padding: 24px 20px;
    gap: 20px;
  }

  .em-divider {
    display: none;
  }
}