/* ===========================
   Blooming Paths Booking Modal
   Figma Design Specifications
   =========================== */

/* === MODAL OVERLAY === */
.bpb-modal-overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.bpb-modal-overlay.bpb-open {
  opacity: 1;
  visibility: visible;
}

/* === BACKDROP === */
.bpb-modal-backdrop {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(3, 37, 50, 0.6) !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
}

/* === MODAL CONTAINER === */
.bpb-modal-container {
  position: relative !important;
  z-index: 1 !important;
  width: 95% !important;
  max-width: 768px !important;
  min-width: 700px !important;
  max-height: 90vh !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  background: #fff !important;
  border-radius: 24px !important;
  padding: 15px 0 0 !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15) !important;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box !important;
}
.bpb-modal-overlay.bpb-open .bpb-modal-container {
  transform: translateY(0) scale(1);
}

/* === CLOSE BUTTON === */
.bpb-modal-close {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  z-index: 10 !important;
  width: 34px !important;
  height: 34px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background: rgba(0, 0, 0, 0.04) !important;
  border: none !important;
  cursor: pointer !important;
  color: #032532 !important;
  padding: 0 !important;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.bpb-modal-close:hover {
  background: rgba(0, 96, 101, 0.1) !important;
  color: #006065 !important;
}

/* === PROGRESS BAR === */
#bpb-progress-bar {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  position: relative !important;
  margin-bottom: 0 !important;
  padding: 16px 32px 20px !important;
  border-bottom: 1px solid #d1d5dc !important;
  height: auto !important;
}

.bpb-progress-track {
  position: absolute !important;
  left: 72px !important;
  right: 72px !important;
  top: 30px !important;
  height: 2px !important;
  background: #d1d5dc !important;
  z-index: 0 !important;
  border-radius: 2px !important;
}

#bpb-progress-fill {
  position: absolute !important;
  left: 72px !important;
  top: 30px !important;
  height: 2px !important;
  background: #0d6e6e !important;
  z-index: 1 !important;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  width: 0%;
  border-radius: 2px !important;
}

.bpb-step-marker-container {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 8px !important;
  position: relative;
  z-index: 10;
  width: 80px !important;
}

.bpb-step-marker {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  font-family: "Inter", sans-serif !important;
  background: #fff !important;
  border: 2px solid #d1d5dc !important;
  color: #d1d5dc !important;
  transition: all 0.3s ease;
  z-index: 10 !important;
}

.bpb-step-marker.active {
  background: #fff !important;
  border: 2px solid #0d6e6e !important;
  color: #0d6e6e !important;
}

.bpb-step-marker.completed {
  background: #0d6e6e !important;
  border: 2px solid #0d6e6e !important;
  color: #fff !important;
}

.bpb-step-label {
  font-size: 13px !important;
  font-family: "Inter", sans-serif !important;
  font-weight: 600 !important;
  color: #b7bfbf !important;
  text-align: center !important;
  line-height: 16px !important;
  white-space: nowrap !important;
}

.bpb-step-label.active,
.bpb-step-label.completed {
  color: #0d6e6e !important;
}

.bpb-step-icon {
  width: 14px;
  height: 14px;
  stroke-width: 3px;
}

/* === STEP VISIBILITY === */
.bpb-step {
  padding: 0 !important;
  margin: 0 !important;
}
.bpb-step.hidden {
  display: none !important;
}
.bpb-step.active {
  display: block !important;
}

/* Steps that are NOT the date/time grid get inner padding */
#bpb-step-3,
#bpb-step-4,
#bpb-step-5 {
  padding: 32px !important;
  min-height: 480px !important;
}

/* === TYPOGRAPHY === */
.bpb-title {
  font-family: "The Seasons", serif !important;
  font-size: 22px !important;
  color: #032532 !important;
  margin-bottom: 0 !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.48px !important;
}
.bpb-step-header {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  margin: 0 0 24px 0 !important;
}

/* === BACK BUTTON === */
.bpb-back {
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0 !important;
  color: #9aa8ad !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: color 0.15s ease;
  border-radius: 50%;
  width: 24px !important;
  height: 24px !important;
  flex-shrink: 0 !important;
}
.bpb-back:hover {
  color: #006065 !important;
}

/* === FORM === */
.bpb-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.5rem !important;
}
.bpb-form-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 1.5rem !important;
}
.bpb-label {
  display: block !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #006065 !important;
  margin-bottom: 10px !important;
  font-family: "Inter", sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}
.bpb-required {
  color: #d32f2f !important;
}
.bpb-input {
  width: 100% !important;
  height: 48px !important;
  padding: 0 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid #d1d5dc !important;
  outline: none !important;
  font-size: 15px !important;
  box-sizing: border-box !important;
  font-family: "Inter", sans-serif !important;
  color: #032532 !important;
  transition: border-color 0.2s ease;
}
.bpb-input:focus {
  border-bottom-color: #006065 !important;
  background: transparent !important;
}
.bpb-input::placeholder {
  color: rgba(3, 37, 50, 0.35) !important;
}
.bpb-textarea {
  width: 100% !important;
  padding: 14px 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid #d1d5dc !important;
  outline: none !important;
  font-size: 15px !important;
  resize: vertical !important;
  box-sizing: border-box !important;
  font-family: "Inter", sans-serif !important;
  color: #032532 !important;
  transition: border-color 0.2s ease;
  line-height: 1.5 !important;
}
.bpb-textarea:focus {
  border-bottom-color: #006065 !important;
  background: transparent !important;
}
.bpb-textarea::placeholder {
  color: rgba(3, 37, 50, 0.35) !important;
}
#bpb-cal-headers > span {
  display: block !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  color: #1e2939 !important;
  text-align: center !important;
  padding: 8px 0 !important;
  font-family: "Inter", sans-serif !important;
}

/* === CHECKBOX === */
.bpb-checkbox-group {
  margin-top: 0.5rem !important;
}
.bpb-checkbox-label {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  cursor: pointer !important;
  user-select: none !important;
}
.bpb-checkbox {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  border-radius: 4px !important;
  border: 2px solid rgba(0, 0, 0, 0.15) !important;
  background: #fff !important;
  cursor: pointer !important;
  margin: 0 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  transition: all 0.2s ease;
  position: relative;
  top: 2px;
}
.bpb-checkbox:checked {
  background: #0d6e6e !important;
  border-color: #0d6e6e !important;
}
.bpb-checkbox:checked::after {
  content: "" !important;
  position: absolute !important;
  left: 5px !important;
  top: 1px !important;
  width: 6px !important;
  height: 10px !important;
  border: solid white !important;
  border-width: 0 2px 2px 0 !important;
  transform: rotate(45deg) !important;
}
.bpb-checkbox-text {
  font-size: 13px !important;
  color: rgba(3, 37, 50, 0.7) !important;
  line-height: 1.5 !important;
  font-family: "Inter Tight", sans-serif !important;
}

/* === SUBMIT BUTTON === */
.bpb-submit-btn {
  width: auto !important;
  min-width: 280px !important;
  height: 52px !important;
  background: #006065 !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  letter-spacing: 0.3px !important;
  border-radius: 28px !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
  margin-top: 1rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: "Inter", sans-serif !important;
  box-shadow: 0 4px 12px rgba(0, 96, 101, 0.2) !important;
  padding: 0 32px !important;
}
.bpb-submit-btn:hover {
  background: #005055 !important;
  box-shadow: 0 6px 16px rgba(0, 80, 85, 0.3) !important;
  transform: translateY(-1px);
}
.bpb-submit-btn:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
  transform: none !important;
}

/* ================================
   DATE & TIME - 2 COLUMN LAYOUT
   ================================ */
#bpb-date-time-grid {
  display: flex !important;
  align-items: stretch !important;
  gap: 0 !important;
  min-height: 520px !important;
  height: 520px !important;
  overflow: hidden !important;
}
.bpb-calendar {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  padding: 32px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
  align-items: flex-start !important;
  overflow: hidden !important;
}

/* === CALENDAR STEP HEADER === */
.bpb-calendar .bpb-step-header {
  width: 100% !important;
  margin-bottom: 0 !important;
}

.bpb-calendar > div:last-child {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  width: 100% !important;
  min-height: 380px !important;
  overflow: hidden !important;
}

.bpb-confirm-wrapper {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  align-items: center !important;
  margin-top: auto !important; /* push it to the bottom */
}

.bpb-slots-wrapper {
  position: relative !important;
  flex: 1 1 auto !important;
  overflow: hidden !important;
}

/* === CALENDAR NAV === */
.bpb-cal-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: 36px !important;
  margin: 0 !important;
  width: 100% !important;
}
.bpb-cal-nav button {
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0 !important;
  color: #9aa8ad !important;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px !important;
  height: 20px !important;
}
.bpb-cal-nav button:hover {
  color: #0d6e6e !important;
}
#bpb-month-label {
  font-weight: 600 !important;
  font-size: 18px !important;
  color: #032532 !important;
  font-family: "Inter", sans-serif !important;
}

/* ================================
   CALENDAR HEADERS - 7 COLUMNS
   ================================ */
#bpb-cal-headers {
  display: grid !important;
  grid-template-columns: repeat(7, 1fr) !important;
  gap: 0 !important;
  text-align: center !important;
  height: 32px !important;
  margin: 0 !important;
  width: 100% !important;
  justify-items: center !important;
}
#bpb-cal-headers > span {
  display: block !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  color: #334155 !important; /* Slightly darker than nav arrows */
  text-align: center !important;
  padding: 8px 0 !important;
  font-family: "Inter", sans-serif !important;
}

/* ================================
   CALENDAR DAYS - 7 COLUMNS
   ================================ */
#bpb-calendar-days {
  display: grid !important;
  grid-template-columns: repeat(7, 1fr) !important;
  row-gap: 4px !important;
  column-gap: 0 !important;
  text-align: center !important;
  height: auto !important;
  width: 100% !important;
  justify-items: center !important;
}
#bpb-calendar-days > * {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 44px !important;
  width: 44px !important;
  border-radius: 50% !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  border: none !important;
  background: transparent !important;
  cursor: default !important;
  padding: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  color: #9aa8ad !important;
  font-family: "Inter", sans-serif !important;
  transition: all 0.2s ease;
}
#bpb-calendar-days > button {
  cursor: pointer !important;
}
#bpb-calendar-days > button.other-month {
  color: #e5e7eb !important;
}
#bpb-calendar-days > button.prev-month {
  color: #9aa8ad !important;
}
#bpb-calendar-days > button.current-month {
  color: #1e2939 !important;
  font-weight: 400 !important;
}
#bpb-calendar-days > button:disabled {
  opacity: 1 !important;
  cursor: not-allowed !important;
  color: #cbd5e1 !important; /* Muted gray for past dates */
  text-decoration: none !important;
}
#bpb-calendar-days > button.active-range {
  font-weight: 600 !important;
  color: #1e2939 !important;
}
#bpb-calendar-days > button.selected {
  background: #006065 !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 10px rgba(0, 96, 101, 0.3) !important;
}

/* === SLOTS SECTION === */
.bpb-slots-section {
  display: flex !important;
  flex-direction: column !important;
  padding: 32px 24px !important;
  border-left: 1px solid #d1d5dc !important;
  width: 260px !important;
  flex-shrink: 0 !important;
  box-sizing: border-box !important;
  gap: 16px !important;
}
.bpb-slots-title {
  font-weight: 600 !important;
  font-size: 14.4px !important;
  color: #1e2939 !important;
  margin: 0 !important;
  font-family: "Inter", sans-serif !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  height: 21.6px !important;
  line-height: 21.6px !important;
}
.bpb-slots-title::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 4V8L10.6667 9.33333' stroke='%230d6e6e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8 14.6667C11.6819 14.6667 14.6667 11.6819 14.6667 8C14.6667 4.3181 11.6819 1.33334 8 1.33334C4.3181 1.33334 1.33334 4.3181 1.33334 8C1.33334 11.6819 4.3181 14.6667 8 14.6667Z' stroke='%230d6e6e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.bpb-selected-date {
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #1e2939 !important;
  margin: 0 !important;
  font-family: "Inter", sans-serif !important;
  text-align: center !important;
  width: 100% !important;
}
.bpb-slots-placeholder {
  font-size: 14px !important;
  color: rgba(3, 37, 50, 0.4) !important;
  text-align: left;
  line-height: 1.6;
  width: 100% !important;
  white-space: normal !important;
  word-break: normal !important;
  grid-column: 1 / -1 !important;
}
#bpb-slots-list {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 10px !important;
  max-height: 360px !important;
  overflow-y: auto !important;
  margin: 0 !important;
  padding-right: 4px !important;
  width: 100% !important;
}
#bpb-slots-list > button {
  height: 40px !important;
  border-radius: 24px !important;
  padding: 8px 16px !important;
  border: 1px solid #e5e7eb !important;
  background: #fff !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 20px !important;
  cursor: pointer !important;
  color: #364153 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: "Inter", sans-serif !important;
  transition: all 0.2s ease;
}
#bpb-slots-list > button:hover {
  border-color: #006065 !important;
  background: rgba(0, 96, 101, 0.02) !important;
}
#bpb-slots-list > button.selected {
  background: #006065 !important;
  border-color: #006065 !important;
  color: #fff !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 12px rgba(0, 96, 101, 0.4) !important;
}

/* === CONFIRM DATETIME BUTTON === */
.bpb-confirm-btn {
  width: 100% !important;
  height: 44px !important;
  background: #006065 !important;
  color: #fff !important;
  font-size: 14.4px !important;
  font-weight: 600 !important;
  border-radius: 38px !important;
  border: none !important;
  cursor: pointer !important;
  font-family: "Inter", sans-serif !important;
  transition: all 0.3s ease;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.1),
    0 2px 4px rgba(0, 0, 0, 0.1) !important;
  margin: 0 !important;
}
.bpb-confirm-btn:hover:not(:disabled) {
  background: #005055 !important;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15) !important;
  transform: translateY(-1px);
}
.bpb-confirm-btn:disabled {
  opacity: 0.4 !important;
  cursor: not-allowed !important;
}
.bpb-confirm-btn.hidden {
  display: none !important;
}

/* === CONFIRMATION SCREEN === */
.bpb-confirmation {
  display: flex !important;
  flex-direction: column !important;
  gap: 2rem !important;
}
.bpb-confirm-section {
  padding-bottom: 1.5rem !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
}
.bpb-confirm-section:last-of-type {
  border-bottom: none !important;
}
.bpb-confirm-label {
  font-size: 13px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  color: rgba(3, 37, 50, 0.5) !important;
  margin-bottom: 0.75rem !important;
  margin-top: 0 !important;
  font-family: "Inter Tight", sans-serif !important;
}
.bpb-confirm-value {
  font-size: 16px !important;
  color: #032532 !important;
  line-height: 1.6 !important;
  margin-bottom: 0.5rem !important;
  font-family: "Inter Tight", sans-serif !important;
}
.bpb-confirm-value:last-child {
  margin-bottom: 0 !important;
}
#bpb-confirm-message-section {
  display: none;
}
#bpb-confirm-message-section.visible {
  display: block !important;
}

/* === SUCCESS SCREEN === */
.bpb-success {
  text-align: center !important;
  padding: 2rem 0 !important;
}
.bpb-success-icon {
  width: 80px !important;
  height: 80px !important;
  background: linear-gradient(135deg, #0d6e6e 0%, #1a9999 100%) !important;
  border-radius: 50% !important;
  color: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 1.5rem !important;
  box-shadow: 0 8px 24px rgba(13, 110, 110, 0.25) !important;
}
.bpb-success-title {
  font-family: "The Seasons", serif !important;
  font-size: 32px !important;
  color: #032532 !important;
  margin-bottom: 1rem !important;
  font-weight: 400 !important;
}
.bpb-success-text {
  font-size: 16px !important;
  color: rgba(3, 37, 50, 0.7) !important;
  max-width: 480px !important;
  margin: 0 auto 2rem !important;
  line-height: 1.6 !important;
  font-family: "Inter Tight", sans-serif !important;
}
.bpb-success-details {
  background: #f8f7f3 !important;
  border-radius: 12px !important;
  padding: 1.5rem !important;
  margin-bottom: 2rem !important;
  max-width: 420px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.bpb-success-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 0.75rem 0 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}
.bpb-success-row:last-child {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}
.bpb-success-row:first-child {
  padding-top: 0 !important;
}
.bpb-success-label {
  font-size: 13px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  color: rgba(3, 37, 50, 0.5) !important;
  font-family: "Inter Tight", sans-serif !important;
}
.bpb-success-value {
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #032532 !important;
  text-align: right !important;
  font-family: "Inter Tight", sans-serif !important;
}
.bpb-success-close {
  background: none !important;
  border: none !important;
  color: #0d6e6e !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  text-transform: capitalize !important;
  cursor: pointer !important;
  font-family: "Inter Tight", sans-serif !important;
  padding: 0.75rem 1.5rem !important;
  transition: all 0.2s ease;
}
.bpb-success-close:hover {
  text-decoration: underline !important;
}

/* === SCROLLBAR === */
.bpb-modal-container::-webkit-scrollbar {
  width: 6px;
}
.bpb-modal-container::-webkit-scrollbar-track {
  background: transparent;
}
.bpb-modal-container::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}
#bpb-slots-list::-webkit-scrollbar {
  width: 4px;
}
#bpb-slots-list::-webkit-scrollbar-track {
  background: transparent;
}
#bpb-slots-list::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.08);
  border-radius: 2px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .bpb-modal-container {
    width: 100% !important;
    max-width: 100% !important;
    max-height: 100vh !important;
    height: 100vh !important;
    border-radius: 0 !important;
    padding: 24px 20px !important;
    overflow-y: auto !important;
  }
  #bpb-date-time-grid {
    flex-direction: column !important;
    height: auto !important;
    gap: 2rem !important;
  }
  .bpb-calendar {
    padding: 24px 20px !important;
    width: 100% !important;
  }
  .bpb-calendar > div:last-child {
    max-width: 100% !important;
  }
  .bpb-slots-section {
    width: 100% !important;
    border-left: none !important;
    border-top: 1px solid #d1d5dc !important;
    padding: 24px 20px !important;
  }
  #bpb-slots-list {
    width: 100% !important;
    padding-right: 0 !important;
    max-height: 200px !important;
    height: auto !important;
  }
  .bpb-confirm-btn {
    width: 100% !important;
  }
  .bpb-selected-date {
    width: 100% !important;
  }
  .bpb-form-grid {
    grid-template-columns: 1fr !important;
  }
  .bpb-title {
    font-size: 20px !important;
  }
}

/* === CALENDAR SLIDE ANIMATIONS === */
@keyframes bpb-slideOutLeft {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-40px);
    opacity: 0;
  }
}
@keyframes bpb-slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(40px);
    opacity: 0;
  }
}
@keyframes bpb-slideInRight {
  from {
    transform: translateX(40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes bpb-slideInLeft {
  from {
    transform: translateX(-40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.bpb-slide-out-left {
  animation: bpb-slideOutLeft 0.2s ease-in forwards !important;
}
.bpb-slide-out-right {
  animation: bpb-slideOutRight 0.2s ease-in forwards !important;
}
.bpb-slide-in-right {
  animation: bpb-slideInRight 0.25s ease-out forwards !important;
}
.bpb-slide-in-left {
  animation: bpb-slideInLeft 0.25s ease-out forwards !important;
}

@keyframes bpb-fadeInUp {
  from {
    transform: translateY(8px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.bpb-fade-in-up {
  animation: bpb-fadeInUp 0.3s ease-out forwards !important;
}

/* === SERVICE SELECTION (STEP 0) === */
.bpb-service-selection {
  padding: 32px 40px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
}

.bpb-step-subtitle {
  margin: 0px 0 0 0 !important;
  font-size: 14px !important;
  color: rgba(3, 37, 50, 0.6) !important;
  font-family: "Inter", sans-serif !important;
}

.bpb-service-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  max-height: 380px !important;
  overflow-y: auto !important;
}

.bpb-service-loading {
  padding: 24px !important;
  text-align: center !important;
  color: rgba(3, 37, 50, 0.5) !important;
  font-family: "Inter", sans-serif !important;
  font-size: 14px !important;
}

.bpb-service-card {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  width: 100% !important;
  padding: 16px 20px !important;
  background: #ffffff !important;
  border: 1.5px solid #e5e7eb !important;
  border-radius: 10px !important;
  cursor: pointer !important;
  text-align: left !important;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease !important;
}

.bpb-service-card:hover {
  border-color: #006065 !important;
  box-shadow: 0 2px 12px rgba(0, 96, 101, 0.12) !important;
}

.bpb-service-card-color {
  width: 10px !important;
  min-width: 10px !important;
  height: 44px !important;
  border-radius: 5px !important;
}

.bpb-service-card-info {
  flex: 1 !important;
}

.bpb-service-card-title {
  font-family: "Inter", sans-serif !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  color: #032532 !important;
  margin-bottom: 2px !important;
}

.bpb-service-card-meta {
  font-family: "Inter", sans-serif !important;
  font-size: 13px !important;
  color: rgba(3, 37, 50, 0.55) !important;
}

.bpb-service-card-arrow {
  font-size: 18px !important;
  color: #006065 !important;
  opacity: 0.7 !important;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease !important;
}

.bpb-service-card:hover .bpb-service-card-arrow {
  transform: translateX(4px) !important;
  opacity: 1 !important;
}

@media (max-width: 599px) {
  .bpb-service-selection {
    padding: 24px 20px !important;
  }
  .bpb-service-list {
    max-height: 280px !important;
  }
}
