/* Extracted from Create.cshtml */

/* ===== BOOKING FORM — REDESIGNED ===== */

:root {
  --bk-blue: #185fa5;
  --bk-blue-light: #e6f1fb;
  --bk-blue-mid: #378add;
  --bk-blue-border: #b5d4f4;
  --bk-green-bg: #eaf3de;
  --bk-green-text: #3b6d11;
  --bk-red: #e24b4a;
}

.bk-page {
  font-family: "Nunito", system-ui, sans-serif;
}

/* ---- Page Header ---- */
.bk-page-header {
  margin-bottom: 1.5rem;
}

.bk-page-header h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 4px;
}

.bk-page-header p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

/* ---- Main Card ---- */
.bk-card {
  background: #fff;
  border: 0.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.75rem;
}

/* ---- Step Block ---- */
.bk-step {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 0.5px solid #f1f5f9;
}

.bk-step:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.bk-step-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.bk-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bk-step-title {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.bk-step-optional {
  font-size: 12px;
  font-weight: 400;
  color: #94a3b8;
  margin-left: 4px;
}

/* ---- Form Controls ---- */
.bk-control {
  width: 100%;
  border: 0.5px solid #cbd5e1;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
  background: #f8fafc;
  color: #0f172a;
  box-sizing: border-box;
  outline: none;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
  appearance: none;
  -webkit-appearance: none;
}

.bk-control:focus {
  border-color: var(--bk-blue-mid);
  box-shadow: 0 0 0 3px rgba(55, 138, 221, 0.12);
  background: #fff;
}

textarea.bk-control {
  resize: vertical;
  line-height: 1.6;
}

.bk-mini-label {
  display: block;
  font-size: 12px;
  color: #64748b;
  margin-bottom: 5px;
  font-weight: 500;
}

/* ---- Radio Cards ---- */
.bk-radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.bk-radio-wrap {
  position: relative;
}

.bk-radio-wrap input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.bk-radio-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 0.5px solid #cbd5e1;
  border-radius: 10px;
  cursor: pointer;
  transition:
    border-color 0.15s,
    background 0.15s;
  background: #fff;
  user-select: none;
}

.bk-radio-wrap input[type="radio"]:checked + .bk-radio-card {
  border: 1.5px solid var(--bk-blue-mid);
  background: var(--brand-light);
}

.bk-radio-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
  font-size: 17px;
  color: #64748b;
}

.bk-radio-wrap input[type="radio"]:checked + .bk-radio-card .bk-radio-icon {
  background: var(--bk-blue-mid);
  color: #fff;
}

.bk-radio-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
}

.bk-radio-text span {
  font-size: 12px;
  color: #64748b;
}

/* ---- Date + Address Grid ---- */
.bk-date-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.bk-col-full {
  grid-column: 1 / -1;
}

/* ---- Store Info Box ---- */
.bk-store-info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--brand-light);
  border: 0.5px solid var(--bk-blue-border);
  border-radius: 10px;
  padding: 12px 14px;
  margin-top: 10px;
}

.bk-store-info i {
  color: var(--brand);
  font-size: 17px;
  flex-shrink: 0;
  margin-top: 2px;
}

.bk-store-info p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
}

.bk-store-info span {
  font-size: 12px;
  color: var(--brand);
  font-weight: 400;
  display: block;
  margin-top: 2px;
}

/* ---- Submit Button ---- */
.bk-btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 24px;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  margin-top: 1.5rem;
  transition: background 0.15s;
}

.bk-btn-submit:hover {
  background: #0c447c;
}

.bk-btn-submit i {
  font-size: 17px;
}

/* ---- Trust Panel ---- */
.bk-trust-panel {
  background: #fff;
  border: 0.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.25rem;
  position: sticky;
  top: 1rem;
}

.bk-trust-panel h4 {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 1rem;
  padding-bottom: 10px;
  border-bottom: 0.5px solid #f1f5f9;
}

.bk-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
}

.bk-trust-item:last-of-type {
  margin-bottom: 0;
}

.bk-trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bk-green-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--bk-green-text);
}

.bk-trust-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.bk-trust-text span {
  font-size: 12px;
  color: #64748b;
  line-height: 1.55;
}

.bk-hotline {
  margin-top: 1rem;
  background: #f8fafc;
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0.5px solid #e2e8f0;
}

.bk-hotline i {
  font-size: 18px;
  color: var(--brand);
  flex-shrink: 0;
}

.bk-hotline p {
  margin: 0;
  font-size: 12px;
  color: #64748b;
}

.bk-hotline strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

/* ---- Responsive ---- */
@@media (max-width: 768px) {
  .bk-radio-grid {
    grid-template-columns: 1fr;
  }

  .bk-date-grid {
    grid-template-columns: 1fr;
  }

  .bk-col-full {
    grid-column: auto;
  }

  .bk-trust-panel {
    position: static;
  }
}
