/*
 * Qulbay Services — Booking Form Styles
 * Template: page-full.php
 * Version: 4.3.0
 */

:root {
  --q-black: #000000;
  --q-card: #ffffff;
  --q-border: #e5e7eb;
  --q-purple: #b100ff;
  --q-purple-dark: #7e22ce;
  --q-green: #0f9f79;
  --q-green-dark: #0b7f61;
  --q-gold: #f4c542;
  --q-text: #111827;
  --q-muted: #6b7280;
}

html, body { min-height: 100%; }

body {
  color: var(--q-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Apply black background only to the plugin page wrapper */
.q-bg-hero {
  background: var(--q-black);
}

/* ── Layout shell ── */
.q-shell {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(220px, 240px);
  gap: 10px;
  align-items: start;
  justify-content: center;
  position: relative;
}

/* Single-column centred state (sidebar hidden) */
.q-shell--solo {
  grid-template-columns: minmax(0, 760px) !important;
  max-width: 760px;
}

.q-card {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
  overflow: hidden;
}

/* ── Hero-zone: top sections of the card are semi-transparent so
   the airport image bleeds through while all text stays sharp. ── */
.q-card-hero-zone {
  background:
    linear-gradient(180deg, rgba(255,255,255,.77) 0%, rgba(255,255,255,.77) 100%),
    url('../img/hero-airport.jpg') center 40% / cover no-repeat fixed;
  color: inherit;
}

/* Divider bottom of hero-zone header */
.q-card-hero-zone.border-b {
  border-bottom-color: rgba(255, 255, 255, 0.25);
}

/* Bold green price highlight in product header */
.q-price-highlight {
  color: #16a34a;
  font-weight: 900;
}

.q-sticky {
  position: sticky;
  top: 24px;
}

/* ── x-cloak: hide Alpine-controlled elements before Alpine boots ── */
/* This prevents all accordion panels flashing open on page load.    */
[x-cloak] { display: none !important; }

/* ── Accordion panels (fold/unfold with height transition) ── */
/*
 * x-show with x-cloak handles initial hidden state reliably.
 * CSS transition gives the smooth open/close animation.
 */
.qlb-panel {
  overflow: hidden;
  transition: max-height 350ms ease, opacity 350ms ease;
}

.qlb-panel > .qlb-panel-inner {
  overflow: hidden;
}

/* scroll-margin so scrollIntoView clears the sticky nav */
.qlb-anchor {
  scroll-margin-top: 16px;
}

/* ── Fields ── */
.q-field {
  border: 2px solid var(--q-border);
  border-radius: 18px;
  background: #fff;
  cursor: text;
}

.q-field label {
  cursor: pointer;
  display: block;
}

.q-field:focus-within {
  border-color: var(--q-purple);
  box-shadow: 0 0 0 4px rgba(177, 0, 255, .08);
}

/* ── Inline field error messages ── */
.qlb-err {
  display: block;
  color: #dc2626;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 4px;
  min-height: 1em;
}

.q-field:has(.qlb-err:not(:empty)) {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, .10);
}

/* ── Buttons & pills ── */
.q-pill-active {
  background: #fff;
  color: #111827;
  box-shadow: inset 0 -4px 0 var(--q-green);
  font-weight: 800;
}

.q-primary {
  display: block;
  width: 100%;
  background: var(--q-green);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: .18s ease;
}

.q-primary:hover:not(:disabled) { background: var(--q-green-dark); }

.q-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* ── Promo blocks ── */
.q-book-ahead {
  background-image:
    linear-gradient(135deg, rgba(244, 197, 66, 0.78) 0%, rgba(244, 197, 66, 0.68) 100%),
    url('../img/book-ahead-bg.svg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  color: #000;
  border: 4px solid var(--q-purple);
  border-radius: 24px;
}

.q-book-ahead * {
  color: #000;
  font-weight: 900;
}

.q-crispy-green {
  background: #d8fff1;
  color: #052e25;
  border: 4px solid var(--q-purple);
  border-radius: 22px;
}

/* ── Service cards ── */
.q-service-card {
  border: 3px solid #e5e7eb;
  border-radius: 24px;
  background: #fff;
  transition: .18s ease;
}

.q-service-card.active {
  border-color: var(--q-purple);
  box-shadow: 0 0 0 5px rgba(177, 0, 255, .10);
  background: #fcf5ff;
}

/* ── Badges ── */
.q-popular {
  background: var(--q-purple);
  color: #fff;
  border-radius: 999px;
  font-weight: 800;
}

.q-chip {
  border: 2px solid #e5e7eb;
  background: #fff;
  border-radius: 999px;
}

/* ── Counter ── */
.q-counter-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 2px solid #d1d5db;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

/* ── WhatsApp FAB ── */
.q-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(37, 211, 102, .35);
  border: 4px solid #fff;
  font-size: 32px;
}

/* ── Page layout ── */
.q-page-wrap {
  max-width: 1280px;
  margin: 0 auto;
}

/* ── Full-page hero background (airport image behind nav + form) ── */
.q-bg-hero {
  background:
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 40%, rgba(0,0,0,.60) 100%),
    url('../img/hero-airport.jpg') center 40% / cover no-repeat fixed;
  padding-top: 0;
  padding-bottom: 60px;
}

/* Nav floats over the image with slight glass effect */
.q-nav-wrap {
  max-width: 1280px;
  margin: 0 auto 10px auto;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 0 0 24px 24px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.q-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -.03em;
  color: #0f172a;
}

.q-brand img {
  height: 44px;
  width: auto;
  display: block;
}

.q-nav-links {
  display: flex;
  gap: 22px;
  font-weight: 800;
  color: #0f172a;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.q-nav-links a.active {
  text-decoration: underline;
  text-underline-offset: 8px;
}

/* ── Hero ── */
.q-hero {
  max-width: 1280px;
  margin: 0 auto 18px auto;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  min-height: 240px;
  background: linear-gradient(180deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .45)),
    url('https://placehold.co/1920x1080/000000/FFFFFF?text=Qulbay') center/cover no-repeat;
}

.q-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .5));
}

.q-hero-inner {
  position: relative;
  z-index: 1;
  padding: 34px 22px;
  color: #fff;
  text-align: center;
}

.q-hero-title {
  font-size: clamp(34px, 6vw, 72px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.04em;
}

.q-hero-subtitle {
  margin-top: 10px;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 800;
}

/* ── Responsive: tablet (≤1023px) ── */
@media (max-width: 1023px) {
  .q-shell {
    grid-template-columns: 1fr;
    max-width: 760px;
    justify-items: center;
  }
  .q-card {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .q-sticky { position: static !important; }
}

/* ── Responsive: mobile (≤767px) ── */
@media (max-width: 767px) {
  .q-nav-wrap { padding: 14px; border-radius: 0 0 18px 18px; }
  .q-nav-links { display: none; }
  .q-brand { font-size: 22px; }
  .q-brand img { height: 36px; }
  .q-card { border-radius: 22px; }
  .q-whatsapp { width: 56px; height: 56px; font-size: 28px; }
}

/* ==============================================
   BOOKING FORM NAV — brand nav (mirrors home page design)
   Unscoped copy of home.css nav rules.
   ============================================== */
.qlb-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #0b0b0b;
    height: 64px;
    display: flex;
    align-items: center;
    transition: box-shadow .2s;
    font-family: 'Inter', system-ui, sans-serif;
}
.qlb-nav.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.qlb-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}
.qlb-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
}
.qlb-logo-box {
    width: 40px;
    height: 40px;
    border: 2px solid #ffffff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.qlb-logo-box span {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-weight: 900;
    font-size: .85rem;
    color: #ffffff;
    letter-spacing: .05em;
}
.qlb-logo-text {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    color: #ffffff;
    letter-spacing: .06em;
}
.qlb-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.qlb-nav-links a {
    color: rgba(255,255,255,.75) !important;
    font-size: .9rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    transition: color .15s, background .15s;
    text-decoration: none !important;
    white-space: nowrap;
}
.qlb-nav-links a:hover {
    color: #F5C518 !important;
    background: rgba(245,197,24,.08);
}
.qlb-nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.qlb-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    background: none;
    border: none;
}
.qlb-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all .2s;
}
.qlb-mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #0b0b0b;
    padding: 16px 20px 24px;
    z-index: 999;
    border-top: 1px solid rgba(255,255,255,.08);
}
.qlb-mobile-menu.open { display: block; }
.qlb-mobile-menu a {
    display: block;
    color: rgba(255,255,255,.8) !important;
    font-size: 1rem;
    font-weight: 700;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    text-decoration: none !important;
}
.qlb-mobile-menu a:last-child { border-bottom: none; }
.qlb-mobile-menu a:hover { color: #F5C518 !important; }
@media (max-width: 767px) {
    .qlb-nav-links { display: none; }
    .qlb-hamburger  { display: flex; }
    .qlb-logo-text  { font-size: 1rem; }
}

/* Push bg-hero content below sticky nav */
.q-bg-hero { padding-top: 0; }

/* ── QLB-V3-FORM-UX-01: Field tooltips (show on focus) ── */
.qlb-tooltip {
  display: none;
  margin-top: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #94a3b8;
  line-height: 1.3;
}
.q-field:focus-within .qlb-tooltip {
  display: block;
}

/* ── QLB-V3-FORM-UX-01: Clickable field wrappers ── */
.q-field--clickable {
  cursor: pointer;
}
.q-field--clickable select,
.q-field--clickable input {
  cursor: pointer;
}

/* ── QLB-V3-FORM-UX-01: Static phone prefix ── */
.qlb-phone-prefix {
  font-size: 1.125rem;
  font-weight: 800;
  color: #334155;
  user-select: none;
  flex-shrink: 0;
  line-height: 1;
}

/* ── QLB-V3-FORM-UX-01: Notes textarea compact ── */
.qlb-notes-area {
  resize: vertical;
  min-height: 56px;
  max-height: 120px;
}

/* ── QLB-V3-FORM-UX-01: Booking summary card (Step 4) ── */
.qlb-summary-card {
  border-radius: 16px;
  border: 2px solid #d1d5db;
  background: #ffffff;
  padding: 16px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  max-width: 100%;
}

.qlb-sum-header {
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5e7eb;
}

.qlb-sum-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.qlb-sum-total-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #6b7280;
}

.qlb-sum-total-amount,
.qlb-sum-total {
  font-size: 1.75rem;
  font-weight: 900;
  color: #10b981;
  text-align: right;
}

.qlb-sum-ref-line,
.qlb-sum-ref {
  margin-top: 2px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #9ca3af;
}

.qlb-sum-confirm {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  margin-bottom: 12px;
}

.qlb-sum-tick {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #d1fae5;
  color: #10b981;
  font-size: 1.1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qlb-sum-confirm-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: #111827;
  margin: 0;
}

.qlb-sum-confirm-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  margin: 1px 0 0 0;
}

.qlb-sum-billing {
  margin-bottom: 12px;
  width: 100%;
}

.qlb-sum-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 5px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid #f3f4f6;
  width: 100%;
}

.qlb-sum-row:last-child {
  border-bottom: none;
}

.qlb-sum-label {
  font-weight: 700;
  color: #6b7280;
  flex: 0 0 auto;
  min-width: 90px;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
}

.qlb-sum-value {
  font-weight: 800;
  color: #111827;
  text-align: right;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.qlb-sum-divider {
  height: 2px;
  background: #e5e7eb;
  margin: 8px 0;
}

.qlb-sum-grid .qlb-sum-row {
  padding: 4px 0;
}

.qlb-sum-pay-btn {
  display: block;
  width: 100%;
  padding: 14px 18px;
  margin-top: 4px;
  border-radius: 12px;
  background: var(--q-green);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background .18s ease, transform .15s ease;
}
.qlb-sum-pay-btn:hover {
  background: var(--q-green-dark);
}
.qlb-sum-pay-btn:active {
  transform: scale(0.98);
}

/* ── Booking Summary 3-Column Table ──────────────────────────── */
.qlb-sum-table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid #10b981;
  font-weight: 700;
  color: #111827;
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.qlb-sum-table thead tr th {
  background: #10b981;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 10px 12px;
  border: 1px solid #059669;
  text-align: left;
  text-transform: uppercase;
}
.qlb-sum-table tbody tr td {
  padding: 7px 10px;
  border: 1px solid #10b981;
  text-align: left;
  font-weight: 700;
  color: #111827;
  vertical-align: top;
}
.qlb-sum-table tbody tr td:first-child {
  background: #f0fdf4;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  width: 110px;
}
.qlb-sum-table tbody tr:hover td {
  background: #f0fff8;
}

/* ── Step Fold / Collapse ─────────────────────────────────────── */
.qlb-step--collapsed .qlb-step-fields { display: none; }
.qlb-step--collapsed .q-btn            { display: none; }
.qlb-step-chip {
  display: none;
  background: #f0fdf4;
  border: 1px solid #10b981;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #065f46;
  justify-content: space-between;
  align-items: center;
  margin: 8px 0;
}
.qlb-step--collapsed .qlb-step-chip { display: flex; }

/* ── Staff Confirmation Message ───────────────────────────────── */
.qlb-staff-msg-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fffbeb;
  border: 1px solid #f59e0b;
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #92400e;
}
.qlb-staff-msg-icon { font-size: 1.2rem; flex-shrink: 0; }

/* ── Step 4 Confirm Card ──────────────────────────────────────── */
.qlb-step4-confirm-card {
  border: 2px solid #10b981;
  border-radius: 12px;
  padding: 16px;
  background: #f0fdf4;
  margin-bottom: 12px;
}
.qlb-step4-confirm-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.qlb-step4-tick {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #10b981;
  color: #fff;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 900;
  flex-shrink: 0;
}
.qlb-step4-confirm-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 4px 0;
}
.qlb-step4-confirm-sub {
  font-size: 0.82rem;
  font-weight: 600;
  color: #374151;
  margin: 0;
}
}
/* ===== qlb-sum2 — Booking Summary Card (v5.27.0) ===== */
.qlb-sum2 {
  border: 2px solid #034f3a;
  border-radius: 10px;
  overflow: hidden;
  font-family: inherit;
  margin: 12px 0 16px;
  background: #fff;
}
.qlb-sum2-header {
  background: #034f3a;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  gap: 8px;
}
.qlb-sum2-ref-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.qlb-sum2-ref-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .8;
}
.qlb-sum2-ref-val {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
}
.qlb-sum2-check {
  font-size: 13px;
  font-weight: 700;
  background: rgba(255,255,255,.15);
  border-radius: 20px;
  padding: 4px 12px;
  white-space: nowrap;
}
.qlb-sum2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid #e5e7eb;
}
@media (max-width: 520px) {
  .qlb-sum2-grid { grid-template-columns: 1fr; }
}
.qlb-sum2-box {
  padding: 12px 16px;
  border-right: 1px solid #e5e7eb;
}
.qlb-sum2-box:last-child { border-right: none; }
.qlb-sum2-box-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #034f3a;
  margin-bottom: 8px;
}
.qlb-sum2-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 6px;
  padding: 3px 0;
  font-size: 13px;
  border-bottom: 1px dashed #f0f0f0;
}
.qlb-sum2-row:last-child { border-bottom: none; }
.qlb-sum2-lbl {
  color: #6b7280;
  font-size: 12px;
  flex-shrink: 0;
}
.qlb-sum2-val {
  font-weight: 600;
  color: #111827;
  text-align: right;
  font-size: 13px;
}
.qlb-sum2-addons {
  background: #f0fdf4;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #166534;
  border-bottom: 1px solid #e5e7eb;
}
.qlb-sum2-addons-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-right: 4px;
  opacity: .7;
}
.qlb-sum2-price {
  padding: 10px 16px 12px;
  background: #fafafa;
}
.qlb-sum2-price-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #374151;
  padding: 2px 0;
}
.qlb-sum2-price-total {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 800;
  color: #034f3a;
  padding-top: 6px;
  margin-top: 4px;
  border-top: 2px solid #034f3a;
}

/* ===== qlb-progress — 4-step progress bar ===== */
.qlb-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px 10px;
  gap: 0;
  position: relative;
}
.qlb-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
}
.qlb-progress-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #d1d5db;
  z-index: 0;
  transition: background .3s;
}
.qlb-progress-step.is-done:not(:last-child)::after {
  background: #034f3a;
}
.qlb-progress-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #9ca3af;
  position: relative;
  z-index: 1;
  transition: border-color .3s, background .3s, color .3s;
}
.qlb-progress-step.is-active .qlb-progress-dot {
  border-color: #034f3a;
  background: #034f3a;
  color: #fff;
}
.qlb-progress-step.is-done .qlb-progress-dot {
  border-color: #034f3a;
  background: #034f3a;
  color: #fff;
}
.qlb-progress-label {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #9ca3af;
  margin-top: 4px;
  white-space: nowrap;
  transition: color .3s;
}
.qlb-progress-step.is-active .qlb-progress-label,
.qlb-progress-step.is-done .qlb-progress-label {
  color: #034f3a;
}

/* ── Availability Loader (qlb-avail-loader.js) ── */
#qlb-avail-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
#qlb-avail-overlay.qlb-avail-overlay--visible {
  display: flex;
}
.qlb-avail-overlay-inner {
  background: #ffd600;
  border: 3px solid #6a0dad;
  border-radius: 10px;
  padding: 28px 36px;
  text-align: center;
  max-width: 340px;
}
.qlb-avail-overlay-text {
  color: #4a007e;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
  line-height: 1.5;
  white-space: pre-line;
}

/* ── Slot Banner (step 2 service section) ── */
.qlb-slot-banner {
  background: #ffd600;
  color: #4a007e;
  font-weight: 800;
  font-size: clamp(0.68rem, 1.6vw, 0.85rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  border-radius: 5px;
  margin: 0 0 10px -5px;
  display: block;
  width: calc(100% + 10px);
  box-sizing: border-box;
  text-align: left;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.qlb-slot-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: #4a007e;
  animation: qlbBannerLoad 4s ease-in-out infinite;
}
@keyframes qlbBannerLoad {
  0%   { left: -100%; }
  50%  { left: 0%; }
  100% { left: 100%; }
}
/* Banner responsive */
@media (max-width: 480px) {
  .qlb-slot-banner {
    font-size: clamp(0.55rem, 2.8vw, 0.72rem);
    padding: 6px 10px;
  }
}
