/* ═══════════════════════════════════════════════════════════
   LIMU EXPRESS LOCKSMITH — BOOKING FORM
   ═══════════════════════════════════════════════════════════ */

:root {
  --navy:       #141d38;
  --navy-light: #201d3c;
  --cta-blue:   #43baff;
  --cta-blue-h: #2da8f0;
  --gold:       #f7b603;
  --gold-h:     #e5a702;
  --heading:    #1b1d21;
  --body:       #6d6d6d;
  --body-light: #9397a7;
  --white:      #ffffff;
  --light-bg:   #f2f2f2;
  --input-bg:   #f6f6f6;
  --border:     #e0e0e0;
  --danger:     #af0606;
  --success:    #22c55e;
  --radius:     10px;
  --shadow:     0 4px 24px rgba(20, 29, 56, 0.12);
  --font:       'Nunito Sans', sans-serif;
}
/* ── Wrapper ── */
.limu-booking {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 16px 60px;
}

/* ── Top trust bar ── */
.limu-trust-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--light-bg);
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 8px;
}
.limu-trust-bar__left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.limu-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.limu-trust-badge i {
  color: var(--gold);
  font-size: 14px;
}
.limu-trust-badge--muted {
  font-weight: 600;
  color: var(--body-light);
}
.limu-trust-bar__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  transition: color .2s;
}
.limu-trust-bar__phone:hover { color: var(--cta-blue); }
.limu-trust-bar__phone i { color: var(--cta-blue); }

/* ── Heading ── */
.limu-heading {
  text-align: center;
  margin-bottom: 28px;
}
.limu-heading h1 {
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 900;
  color: var(--heading);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.limu-heading h1 span { color: var(--cta-blue); }
.limu-heading__sub {
  margin-top: 8px;
  font-size: 16px;
  color: var(--body);
}
.limu-heading__sub strong {
  color: var(--gold);
  font-weight: 800;
}
.limu-heading__sub a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.limu-heading__sub a:hover { color: var(--cta-blue); }

/* ── Trust pills ── */
.limu-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.limu-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
}
.limu-pill__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(67, 186, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cta-blue);
  font-size: 10px;
}
.limu-pill__title {
  font-weight: 700;
  color: var(--heading);
  line-height: 1.2;
}
.limu-pill__desc {
  font-size: 10px;
  color: var(--body-light);
  line-height: 1.2;
}

/* ── Step indicator ── */
.limu-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 24px;
  flex-wrap: nowrap;
  width: 100%;
}
.limu-step-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  border: none;
  border-radius: 100px;
  padding: 8px 16px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s ease;
  outline: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.limu-step-btn--active {
  background: var(--cta-blue);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(67, 186, 255, 0.35);
}
.limu-step-btn--done {
  background: rgba(67, 186, 255, 0.1);
  color: var(--cta-blue);
  cursor: pointer;
}
.limu-step-btn--done:hover { background: rgba(67, 186, 255, 0.18); }
.limu-step-btn--locked {
  background: var(--light-bg);
  color: #bbb;
  cursor: default;
}
.limu-step-btn i { font-size: 12px; }
.limu-step-line {
  width: 20px;
  height: 2px;
  background: var(--border);
  margin: 0 2px;
  transition: background .3s;
  flex-shrink: 0;
}
.limu-step-line--filled { background: rgba(67, 186, 255, 0.4); }

/* ── Form card ── */
.limu-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.limu-card *, .limu-card *::before, .limu-card *::after {
  max-width: 100%;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .limu-card { padding: 36px 32px; }
}

/* ── Step panels ── */
.limu-panel { display: none; }
.limu-panel--active {
  display: block;
  animation: limuFadeIn .35s ease;
}
@keyframes limuFadeIn {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: translateX(0); }
}

.limu-panel__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 4px;
  text-align: center;
}
.limu-panel__desc {
  font-size: 14px;
  color: var(--body);
  margin-bottom: 24px;
  text-align: center;
}

/* ── Form fields ── */
.limu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 540px) {
  .limu-grid--2 { grid-template-columns: 1fr 1fr; }
}

.limu-field { display: flex; flex-direction: column; gap: 6px; }
.limu-label {
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  color: #3a3a3a !important;
}
.limu-label .req { color: var(--gold); }
.limu-label .opt { color: var(--body-light); font-weight: 600; text-transform: none; letter-spacing: 0; }

.limu-input {
  width: 100% !important;
  height: 48px !important;
  padding: 0 14px !important;
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius) !important;
  background: var(--input-bg) !important;
  font-family: var(--font) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #1b1d21 !important;
  outline: none !important;
  transition: border-color .2s, box-shadow .2s !important;
}
.limu-input::placeholder { color: #999 !important; }
.limu-input:focus {
  border-color: var(--cta-blue);
  box-shadow: 0 0 0 3px rgba(67, 186, 255, 0.12);
}

.limu-input--icon {
  padding-left: 44px;
}
.limu-input-wrap {
  position: relative;
}
.limu-input-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #b0b0b0;
  font-size: 14px;
  pointer-events: none;
  transition: color .2s;
}
.limu-input:focus ~ i,
.limu-input:not(:placeholder-shown) ~ i { color: var(--cta-blue); }

/* Select */
.limu-select {
  width: 100%;
  height: 48px;
  padding: 0 36px 0 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--input-bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239397a7' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") no-repeat right 14px center;
  font-family: var(--font) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #1b1d21 !important;
  outline: none !important;
  appearance: none !important;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}
.limu-select:focus {
  border-color: var(--cta-blue);
  box-shadow: 0 0 0 3px rgba(67, 186, 255, 0.12);
}

/* Textarea */
.limu-textarea {
  width: 100%;
  min-height: 80px;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--input-bg);
  font-family: var(--font);
  font-size: 14px;
  color: var(--heading);
  outline: none;
  resize: vertical;
  transition: border-color .2s, box-shadow .2s;
}
.limu-textarea::placeholder { color: #b0b0b0; }
.limu-textarea:focus {
  border-color: var(--cta-blue);
  box-shadow: 0 0 0 3px rgba(67, 186, 255, 0.12);
}

/* ── Emergency toggle ── */
.limu-emergency {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: all .2s;
  margin-bottom: 20px;
  background: var(--input-bg);
  user-select: none;
}
.limu-emergency:hover { border-color: #ccc; }
.limu-emergency--active {
  background: rgba(175, 6, 6, 0.06);
  border-color: rgba(175, 6, 6, 0.3);
}
.limu-emergency__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(247, 182, 3, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
  transition: all .2s;
}
.limu-emergency--active .limu-emergency__icon {
  background: rgba(175, 6, 6, 0.1);
  color: var(--danger);
}
.limu-emergency__text h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.3;
}
.limu-emergency__text p {
  font-size: 12px;
  color: var(--body-light);
  line-height: 1.3;
  margin-top: 2px;
}
.limu-emergency--active .limu-emergency__text h4 { color: var(--danger); }

/* Toggle switch */
.limu-toggle {
  margin-left: auto;
  width: 40px;
  height: 22px;
  border-radius: 11px;
  background: #d0d0d0;
  position: relative;
  flex-shrink: 0;
  transition: background .2s;
}
.limu-toggle::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  top: 3px;
  left: 3px;
  transition: transform .2s;
  box-shadow: 0 1px 3px rgba(0,0,0,.15);
}
.limu-emergency--active .limu-toggle { background: var(--danger); }
.limu-emergency--active .limu-toggle::after { transform: translateX(18px); }

/* ── Category cards ── */
.bk-cat-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 540px) {
  .bk-cat-cards { grid-template-columns: 1fr 1fr; }
}
.bk-cat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  transition: all .2s;
  font-family: var(--font);
  text-align: left;
  position: relative;
  overflow: hidden;
}
.bk-cat-card:hover {
  border-color: #ccc;
  background: var(--input-bg);
}
.bk-cat-card--selected {
  border-color: var(--cta-blue);
  background: rgba(67, 186, 255, 0.05);
  box-shadow: 0 0 0 1px rgba(67, 186, 255, 0.15);
}
.bk-cat-card--urgent {
  border-color: rgba(247, 182, 3, 0.35);
  background: rgba(247, 182, 3, 0.04);
}
.bk-cat-card--urgent:hover {
  border-color: rgba(247, 182, 3, 0.55);
  background: rgba(247, 182, 3, 0.07);
}
.bk-cat-card--urgent.bk-cat-card--selected {
  border-color: rgba(247, 182, 3, 0.7);
  background: rgba(247, 182, 3, 0.08);
  box-shadow: 0 0 0 1px rgba(247, 182, 3, 0.2);
}

/* Top row: icon + go arrow */
.bk-cat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 10px;
}
.bk-cat-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--input-bg);
  color: var(--body-light);
  transition: all .2s;
}
.bk-cat-ico svg {
  width: 22px;
  height: 22px;
}
.bk-cat-card--urgent .bk-cat-ico {
  background: rgba(247, 182, 3, 0.1);
  color: #d49b02;
}
.bk-cat-card--selected .bk-cat-ico {
  background: rgba(67, 186, 255, 0.12);
  color: var(--cta-blue);
}
.bk-cat-card--urgent.bk-cat-card--selected .bk-cat-ico {
  background: rgba(247, 182, 3, 0.15);
  color: #c28f01;
}

/* Go arrow */
.bk-cat-go {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #bbb;
  opacity: 0;
  transform: translateX(-6px);
  transition: all .25s ease;
}
.bk-cat-go svg {
  width: 16px;
  height: 16px;
}
.bk-cat-card:hover .bk-cat-go {
  opacity: 1;
  transform: translateX(0);
}
.bk-cat-card--selected .bk-cat-go {
  opacity: 1;
  transform: translateX(0);
  color: var(--cta-blue);
  background: rgba(67, 186, 255, 0.1);
}
.bk-cat-card--urgent.bk-cat-card--selected .bk-cat-go {
  color: #c28f01;
  background: rgba(247, 182, 3, 0.1);
}

/* Title */
.bk-cat-t {
  font-size: 15px;
  font-weight: 800;
  color: var(--heading);
  line-height: 1.2;
  transition: color .2s;
}
.bk-cat-card--selected .bk-cat-t { color: var(--cta-blue); }
.bk-cat-card--urgent.bk-cat-card--selected .bk-cat-t { color: #c28f01; }

/* Tags */
.bk-cat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}
.bk-cat-tags span {
  font-size: 11px;
  font-weight: 600;
  color: var(--body-light);
  background: var(--light-bg);
  padding: 3px 10px;
  border-radius: 100px;
  line-height: 1.4;
}

/* ── Service detail chips ── */
.bk-svc-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, opacity .3s ease, margin .3s ease;
  opacity: 0;
  margin-top: 0;
}
.bk-svc-detail--open {
  max-height: 200px;
  opacity: 1;
  margin-top: 16px;
}
.bk-svc-detail__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--body);
  margin-bottom: 10px;
  text-align: center;
}
.bk-svc-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  justify-items: center;
}
.bk-svc-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  background: var(--white);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--body);
  cursor: pointer;
  transition: all .2s;
  width: 100%;
  justify-content: center;
}
.bk-svc-chip:hover {
  border-color: #ccc;
  background: var(--input-bg);
}
.bk-svc-chip--selected {
  border-color: var(--cta-blue);
  background: rgba(67, 186, 255, 0.08);
  color: var(--cta-blue);
  box-shadow: 0 0 0 1px rgba(67, 186, 255, 0.12);
}
.bk-svc-chip--skip {
  border-color: var(--border);
  background: transparent;
  color: var(--body-light);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
}
.bk-svc-chip--skip:hover {
  color: var(--heading);
  border-color: #ccc;
}

/* ── Date picker (native) ── */
input[type="date"].limu-input {
  cursor: pointer;
  position: relative;
  -webkit-appearance: none;
  appearance: none;
}
input[type="date"].limu-input::-webkit-calendar-picker-indicator {
  filter: invert(50%) sepia(80%) saturate(500%) hue-rotate(175deg);
  cursor: pointer;
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
input[type="date"].limu-input:focus::-webkit-calendar-picker-indicator {
  opacity: 0.7;
  width: 20px;
  height: 20px;
  left: auto;
  right: 10px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}

/* ── Navigation ── */
.limu-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--light-bg);
}

/* ── Buttons ── */
.limu-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  padding: 0 24px;
  height: 48px;
  cursor: pointer;
  transition: all .2s;
  outline: none;
  text-decoration: none;
}
.limu-btn--primary {
  background: var(--cta-blue);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(67, 186, 255, 0.25);
}
.limu-btn--primary:hover:not(:disabled) {
  background: var(--cta-blue-h);
  box-shadow: 0 4px 18px rgba(67, 186, 255, 0.35);
  transform: translateY(-1px);
}
.limu-btn--primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}
.limu-btn--ghost {
  background: transparent;
  color: var(--body);
}
.limu-btn--ghost:hover {
  color: var(--heading);
  background: var(--input-bg);
}

/* ── Loading spinner ── */
.limu-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: limuSpin .6s linear infinite;
}
@keyframes limuSpin {
  to { transform: rotate(360deg); }
}

/* ── Bottom info ── */
.limu-footer-info {
  text-align: center;
  margin-top: 20px;
  padding-bottom: 24px;
}
.limu-footer-info p {
  font-size: 12px;
  color: var(--body-light);
  line-height: 1.6;
}
.limu-footer-info strong { color: var(--heading); }

/* ── Floating CTA (mobile) ── */
.limu-float-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background: var(--cta-blue);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(67, 186, 255, 0.4);
  transition: transform .2s;
}
.limu-float-cta:hover { transform: scale(1.05); }
.limu-float-cta i { margin-right: 6px; }
@media (max-width: 639px) {
  .limu-float-cta { display: inline-flex; align-items: center; }
}

/* ── Success screen ── */
.limu-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 16px;
  animation: limuFadeIn .5s ease;
  overflow: hidden;
  width: 100%;
}
.limu-success__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--success);
  font-size: 32px;
}
.limu-success h2 {
  font-size: 28px;
  font-weight: 900;
  color: var(--heading);
  margin-bottom: 12px;
}
.limu-success p {
  font-size: 16px;
  color: var(--body);
  margin-bottom: 20px;
  line-height: 1.6;
}
.limu-success__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 900;
  color: var(--cta-blue);
  text-decoration: none;
}
.limu-success__phone:hover { text-decoration: underline; }

/* ── Service call fee badge ── */
.limu-fee {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(247, 182, 3, 0.08);
  border: 1px solid rgba(247, 182, 3, 0.2);
  border-radius: 8px;
  padding: 8px 14px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--heading);
}
.limu-fee i { color: var(--gold); }