/* ==========================================================================
   Book a Site Visit — Inner Space Creation
   Page-specific styles. Prefix: bsv-
   ========================================================================== */

/* ---------- Steps ---------- */
.bsv-steps__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--isc-space-xl);
}

@media (min-width: 600px) {
  .bsv-steps__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .bsv-steps__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bsv-steps__item {
  text-align: center;
  padding: var(--isc-space-lg) var(--isc-space-md);
}

.bsv-steps__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 auto var(--isc-space-md);
  border-radius: 50%;
  background-color: var(--isc-bg-stone);
  color: #FFFFFF;
  font-family: var(--isc-font-display);
  font-weight: var(--isc-fw-regular);
  font-size: var(--isc-fs-h4);
  line-height: 1;
}

/* Connecting line between steps (desktop) */
@media (min-width: 960px) {
  .bsv-steps__item {
    position: relative;
  }

  .bsv-steps__item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: calc(var(--isc-space-lg) + 22px);
    right: 0;
    width: calc(100% - 44px);
    height: 2px;
    background-color: var(--isc-pale-stone);
    transform: translateX(50%);
  }
}

.bsv-steps__item h3 {
  margin-bottom: var(--isc-space-xs);
  font-size: var(--isc-fs-h4);
}

/* ---------- Social Proof ---------- */
.bsv-proof {
  color: var(--isc-text-driftwood);
  font-size: var(--isc-fs-caption);
  margin-top: var(--isc-space-sm);
  margin-bottom: 0;
}

/* ---------- Availability Badge ---------- */
.bsv-availability {
  text-align: center;
  font-size: var(--isc-fs-caption);
  color: var(--isc-text-driftwood);
  margin-bottom: var(--isc-space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--isc-space-sm);
}

.bsv-availability__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #2e7d32;
  border-radius: 50%;
  flex-shrink: 0;
  animation: bsv-pulse 2s ease-in-out infinite;
}

@keyframes bsv-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ---------- Form Section ---------- */
.bsv-form-section {
  background-color: var(--isc-color-bg-page);
}

.bsv-form-note {
  text-align: center;
  margin-top: var(--isc-space-lg);
  color: var(--isc-text-driftwood);
  font-size: var(--isc-fs-caption);
}

/* ---------- Trust Cards ---------- */
.bsv-trust__card {
  text-align: center;
  border: 1px solid var(--isc-pale-stone);
}

/* ---------- Testimonial ---------- */
.bsv-testimonial {
  text-align: center;
}

.bsv-testimonial__quote {
  max-width: 640px;
  margin-inline: auto;
  border-left: none;
  padding: 0;
}

.bsv-testimonial__quote p {
  font-family: var(--isc-font-display);
  font-weight: var(--isc-fw-light);
  font-style: italic;
  font-size: var(--isc-fs-h3);
  line-height: var(--isc-lh-display);
  color: var(--isc-text-charcoal);
  margin-bottom: var(--isc-space-lg);
}

.bsv-testimonial__quote cite {
  font-family: var(--isc-font-body);
  font-style: normal;
  font-weight: var(--isc-fw-regular);
  font-size: var(--isc-fs-caption);
  color: var(--isc-text-driftwood);
}

/* ---------- Alternative Contact ---------- */
.bsv-alt-contact h2 {
  margin-bottom: var(--isc-space-lg);
}

.bsv-alt-contact__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--isc-space-md);
}

.bsv-alt-contact__list li {
  font-size: var(--isc-fs-h4);
  line-height: var(--isc-lh-heading);
}

.bsv-alt-contact__list strong {
  color: var(--isc-color-heading);
  margin-right: var(--isc-space-xs);
}
