/* ════════════════════════════════════════════════
   BOOKING GUIDE — Option 1 · Compact Horizontal Step Cards
   Namespace: .cab-booking-guide-  (isolated, no global leakage)
   Breakpoints: 1440 / 1024 / 768 / 375
════════════════════════════════════════════════ */

.cab-booking-guide-wrap {
  padding: 40px 0 50px;
}

.cab-booking-guide-1 {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 36px 36px 32px;
  box-shadow: 0 2px 0 0 #fcb142 inset, 0 8px 32px rgba(0,0,0,.09);
}

/* Section header */
.cab-booking-guide-1__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.cab-booking-guide-1__eyebrow {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fcb142;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cab-booking-guide-1__eyebrow::before,
.cab-booking-guide-1__eyebrow::after {
  content: '';
  display: block;
  width: 18px;
  height: 1.5px;
  background: #fcb142;
  opacity: .5;
}

.cab-booking-guide-1__title {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 800;
  color: #111;
  line-height: 1.2;
}

.cab-booking-guide-1__desc {
  font-size: 13px;
  color: #666;
  max-width: 540px;
  line-height: 1.65;
}

/* Steps row */
.cab-booking-guide-1__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-bottom: 28px;
  position: relative;
}

/* connector line */
.cab-booking-guide-1__steps::before {
  content: '';
  position: absolute;
  top: 26px;
  left: calc(10% + 4px);
  right: calc(10% + 4px);
  height: 1px;
  background: linear-gradient(90deg, transparent, #e8e0d4 10%, #e8e0d4 90%, transparent);
  z-index: 0;
}

.cab-booking-guide-1__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 6px;
  position: relative;
  z-index: 1;
}

.cab-booking-guide-1__step-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #faf8f4;
  border: 2px solid #e8e0d4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 10px;
  transition: border-color .2s, background .2s;
  cursor: default;
}
.cab-booking-guide-1__step:hover .cab-booking-guide-1__step-icon {
  border-color: #fcb142;
  background: #fffaf0;
}

.cab-booking-guide-1__step-num {
  position: absolute;
  top: 32px;
  right: calc(50% - 30px);
  width: 16px;
  height: 16px;
  background: #fcb142;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.cab-booking-guide-1__step-name {
  font-size: 11.5px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
  line-height: 1.3;
}

.cab-booking-guide-1__step-hint {
  font-size: 10.5px;
  color: #9a9590;
  line-height: 1.45;
}

/* Route example cards */
.cab-booking-guide-1__examples {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cab-booking-guide-1__example {
  background: #faf8f4;
  border: 1.5px solid #e8e0d4;
  border-radius: 10px;
  padding: 16px 18px;
  transition: border-color .2s;
}
.cab-booking-guide-1__example:hover {
  border-color: #fcb142;
}

.cab-booking-guide-1__ex-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fcb142;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cab-booking-guide-1__ex-label::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background: #fcb142;
  border-radius: 50%;
}

.cab-booking-guide-1__route {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.cab-booking-guide-1__node {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #1a1a1a;
  background: #fff;
  border: 1px solid #ddd8d0;
  border-radius: 6px;
  padding: 5px 10px;
  white-space: nowrap;
}
.cab-booking-guide-1__node .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.cab-booking-guide-1__node .dot--pickup { background: #22c55e; }
.cab-booking-guide-1__node .dot--stop   { background: #fcb142; }
.cab-booking-guide-1__node .dot--drop   { background: #ef4444; }
.cab-booking-guide-1__node .dot--return { background: #8b5cf6; }

.cab-booking-guide-1__arrow {
  font-size: 12px;
  color: #c8bfb4;
  flex-shrink: 0;
}

.cab-booking-guide-1__ex-meta {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cab-booking-guide-1__meta-item {
  font-size: 10.5px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 4px;
}
.cab-booking-guide-1__meta-item strong { color: #444; font-weight: 700; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .cab-booking-guide-1 { padding: 30px 28px 26px; }
}

@media (max-width: 780px) {
  .cab-booking-guide-wrap { padding: 32px 0 40px; }
  .cab-booking-guide-1 { padding: 24px 18px 22px; }
  .cab-booking-guide-1__steps { grid-template-columns: 1fr 1fr; gap: 16px; }
  .cab-booking-guide-1__steps::before { display: none; }
  .cab-booking-guide-1__step-num { right: calc(50% - 28px); }
  .cab-booking-guide-1__examples { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .cab-booking-guide-wrap { padding: 24px 0 32px; }
  .cab-booking-guide-1__head { flex-direction: column; align-items: flex-start; }
  .cab-booking-guide-1__steps { grid-template-columns: 1fr; gap: 10px; }
  .cab-booking-guide-1__step { flex-direction: row; align-items: flex-start; text-align: left; gap: 14px; }
  .cab-booking-guide-1__step-icon { flex-shrink: 0; margin-bottom: 0; }
  .cab-booking-guide-1__step-num { top: 34px; right: auto; left: 36px; }
  .cab-booking-guide-1__steps::before { display: none; }
}

/* 375 breakpoint (small phones) */
@media (max-width: 375px) {
  .cab-booking-guide-1 { border-radius: 10px; padding: 18px 14px 18px; }
  .cab-booking-guide-1__title { font-size: 16px; }
  .cab-booking-guide-1__node { font-size: 11px; padding: 4px 8px; }
}
