.booking-hero {
    position: relative;
    padding: 92px 0 42px;
    text-align: center;
    overflow: hidden;
  }
  .booking-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(900px 600px at 90% 30%, rgba(42, 111, 168, 0.14), transparent 55%),
      radial-gradient(600px 400px at 5% 90%, rgba(184, 150, 104, 0.06), transparent 55%);
  }
  .booking-hero > * { position: relative; }
  .booking-hero h1 { font-size: clamp(36px, 4.8vw, 58px); }
  .booking-hero .lead { margin: 24px auto 0; max-width: 660px; font-size: 18px; }
  .booking-hero .crumbs {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--ink-4);
    margin-bottom: 24px;
  }
  .booking-hero .crumbs a { color: var(--brand); }

  /* Stepper */
  .stepper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: 36px 0 60px;
    flex-wrap: wrap;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .step-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }
  .step-circle .num {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--surface);
    border: 1.5px solid var(--line);
    display: grid;
    place-items: center;
    font-family: var(--ff-num);
    font-weight: 700;
    font-size: 16px;
    color: var(--ink-4);
    transition: all .3s;
  }
  .step-circle.active .num {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
    box-shadow: 0 0 0 6px rgba(31, 78, 120, 0.12);
  }
  .step-circle.done .num {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
  }
  .step-circle .lbl {
    font-size: 12.5px;
    color: var(--ink-4);
    font-weight: 600;
  }
  .step-circle.active .lbl { color: var(--ink); }
  .step-line {
    flex: 1;
    height: 1px;
    background: var(--line);
    margin: 0 12px;
    align-self: flex-start;
    margin-top: 22px;
    min-width: 30px;
  }
  .step-line.done { background: var(--gold); }

  /* Layout */
  .booking-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 40px;
    align-items: flex-start;
    margin-top: 40px;
  }

  /* Sidebar */
  .booking-aside {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .summary-card {
    background: linear-gradient(180deg, #0A1828 0%, #0A0F1A 100%);
    color: #fff;
    border-radius: var(--r-xl);
    padding: 36px;
    position: relative;
    overflow: hidden;
  }
  .summary-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(400px 250px at 90% 0%, rgba(31, 78, 120, 0.45), transparent 60%);
  }
  .summary-card::after {
    content: "";
    position: absolute;
    width: 200px; height: 200px;
    bottom: -60px; left: -60px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(184, 150, 104, 0.18), transparent 60%);
  }
  .summary-card > * { position: relative; z-index: 2; }
  .summary-card .eyebrow { color: var(--gold-soft); }
  .summary-card h3 { color: #fff; font-size: 22px; margin-bottom: 14px; }
  .summary-card .desc { color: #98A4B4; font-size: 14.5px; line-height: 1.8; }

  .summary-items {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px dashed rgba(255,255,255,0.08);
    gap: 16px;
  }
  .summary-row:last-child { border-bottom: none; padding-bottom: 0; }
  .summary-row .lbl { font-size: 13px; color: #8C97A6; }
  .summary-row .val { font-size: 14px; font-weight: 700; color: #fff; }

  .promise-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 28px;
  }
  .promise-card h4 { font-size: 16px; margin-bottom: 18px; }
  .promise-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
  .promise-card li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-2); }
  .promise-card li svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

  /* Form */
  .booking-form-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: 44px;
  }
  .form-section { margin-bottom: 40px; }
  .form-section:last-child { margin-bottom: 0; }
  .form-section .sec-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
  }
  .form-section .sec-num {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--brand-pale);
    color: var(--brand);
    display: grid; place-items: center;
    font-family: var(--ff-num);
    font-weight: 700;
    font-size: 14px;
  }
  .form-section .sec-title h3 { font-size: 17px; }
  .form-section .sec-title p { font-size: 12.5px; color: var(--ink-4); margin-top: 2px; }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  /* Service choice — radio cards */
  .svc-choices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .svc-choice {
    position: relative;
    cursor: pointer;
    padding: 18px 20px;
    background: var(--surface);
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    transition: all .2s;
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  .svc-choice:hover { border-color: rgba(31, 78, 120, 0.3); background: var(--bg-soft); }
  .svc-choice input { position: absolute; opacity: 0; pointer-events: none; }
  .svc-choice .check {
    width: 22px; height: 22px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    flex-shrink: 0;
    display: grid; place-items: center;
    margin-top: 2px;
    transition: all .2s;
  }
  .svc-choice .check svg {
    color: #fff;
    width: 12px; height: 12px;
    opacity: 0;
    transition: opacity .2s;
  }
  .svc-choice input:checked ~ .meta .check,
  .svc-choice:has(input:checked) .check {
    background: var(--brand);
    border-color: var(--brand);
  }
  .svc-choice:has(input:checked) .check svg { opacity: 1; }
  .svc-choice:has(input:checked) {
    border-color: var(--brand);
    background: var(--brand-faint);
  }
  .svc-choice .info h4 { font-size: 14.5px; margin-bottom: 4px; }
  .svc-choice .info p { font-size: 12.5px; color: var(--ink-4); line-height: 1.6; }
  @media (max-width: 600px) {
    .svc-choices { grid-template-columns: 1fr; }
  }

  /* Time slots */
  .slots-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
  }
  .slot {
    padding: 14px 10px;
    text-align: center;
    background: var(--surface);
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-2);
    transition: all .2s;
    position: relative;
  }
  .slot:hover { border-color: rgba(31, 78, 120, 0.3); }
  .slot.selected { background: var(--brand); color: #fff; border-color: var(--brand); }
  .slot.disabled { opacity: 0.4; cursor: not-allowed; }
  .slot.disabled::after {
    content: "";
    position: absolute;
    inset: 50% 12% auto 12%;
    height: 1px;
    background: var(--ink-4);
  }
  @media (max-width: 600px) {
    .slots-row { grid-template-columns: repeat(2, 1fr); }
  }

  /* Date picker (custom mini) */
  .date-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 20px;
  }
  .date-cell {
    padding: 14px 6px;
    text-align: center;
    background: var(--surface);
    border: 1.5px solid var(--line);
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: all .2s;
  }
  .date-cell:hover { border-color: rgba(31, 78, 120, 0.3); }
  .date-cell.selected { background: var(--brand); color: #fff; border-color: var(--brand); }
  .date-cell .day {
    font-size: 11px;
    color: var(--ink-4);
    text-transform: none;
  }
  .date-cell.selected .day { color: rgba(255,255,255,0.7); }
  .date-cell .date {
    font-family: var(--ff-num);
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-top: 4px;
  }
  .date-cell.selected .date { color: #fff; }
  @media (max-width: 600px) {
    .date-row { grid-template-columns: repeat(4, 1fr); }
  }

  .form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 28px;
    margin-top: 28px;
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
  }

  @media (max-width: 980px) {
    .booking-grid { grid-template-columns: 1fr; }
    .booking-aside { position: static; }
    .booking-form-card { padding: 28px; }
    .form-row { grid-template-columns: 1fr; }
  }

  /* Process strip */
  .process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
    position: relative;
  }
  .process::before {
    content: "";
    position: absolute;
    top: 32px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line), transparent);
  }
  .pcl {
    text-align: center;
    position: relative;
  }
  .pcl .num {
    width: 64px; height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--line);
    display: grid; place-items: center;
    color: var(--brand);
    box-shadow: 0 6px 18px -8px rgba(22, 57, 88, 0.2);
  }
  .pcl h4 { font-size: 16px; margin-bottom: 6px; }
  .pcl p { font-size: 13.5px; color: var(--ink-4); line-height: 1.6; }
  @media (max-width: 980px) {
    .process { grid-template-columns: 1fr 1fr; }
    .process::before { display: none; }
  }
  @media (max-width: 600px) {
    .process { grid-template-columns: 1fr; }
  }


  /* Requested RTL layout + stronger interaction states */
  @media (min-width: 981px) {
    .booking-grid {
      direction: ltr;
      grid-template-columns: minmax(300px, 1fr) minmax(0, 1.6fr);
    }
    .booking-aside {
      grid-column: 1;
      direction: rtl;
    }
    .booking-form-card {
      grid-column: 2;
      direction: rtl;
    }
  }
  .pcl {
    padding: 18px 16px;
    border-radius: var(--r-lg);
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease, color .25s ease;
  }
  .pcl .num {
    transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
  }
  .pcl:hover {
    transform: translateY(-5px);
    background: var(--surface);
    box-shadow: var(--sh-2);
  }
  .pcl:hover .num {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
    transform: scale(1.06);
    box-shadow: 0 14px 30px -14px rgba(31, 78, 120, .72);
  }
  @media (max-width: 980px) {
    .booking-grid { direction: rtl; }
    .booking-aside,
    .booking-form-card { grid-column: auto; }
  }


  /* Reduce empty vertical space under booking hero */
  .booking-hero {
    padding: 62px 0 22px !important;
  }
  .booking-hero .lead {
    margin-top: 16px !important;
  }
  .stepper {
    margin: 24px auto 22px !important;
  }
  .booking-grid {
    margin-top: 18px !important;
  }
  @media (max-width: 980px) {
    .booking-hero { padding: 44px 0 16px !important; }
    .stepper { margin-bottom: 12px !important; }
  }