/* ==========================================================================
   LION TRACK SAFARI TANZANIA - INQUIRY PLANNER STYLES
   Brand Color Palette:
     --yz-primary:        #D46E1B (Signature Lion Track Safari Orange)
     --yz-primary-hover:  #B8590A (Deep Sunset Orange)
     --yz-primary-light:  #FDF1E4 (Soft Warm Orange Light Tint)
     --yz-primary-subtle: #FFF6EE (Subtle Background Tint)
     --yz-charcoal:       #191815 (Deep Charcoal / Black)
     --yz-dark-brown:     #3C1F1D (Safari Brown)
     --yz-bg:             #F8F3EC (Soft Warm Safari Beige)
     --yz-white:          #FFFFFF (Pure White)
     --yz-pill-gray:      #E0D9CE (Inactive Pill Gray)
     --yz-pill-disabled:  #DDD6CB (Disabled Pill Gray)
     --yz-text-gray:      #6B655C (Muted Subtext)
     --yz-border:         #D8D0C3 (Border)
   ========================================================================== */

:root {
  --yz-primary: #D46E1B;
  --yz-primary-hover: #B8590A;
  --yz-primary-light: #FDF1E4;
  --yz-primary-subtle: #FFF6EE;
  --yz-charcoal: #191815;
  --yz-dark-brown: #3C1F1D;
  --yz-bg: #F8F3EC;
  --yz-white: #FFFFFF;
  --yz-pill-gray: #E0D9CE;
  --yz-pill-disabled: #DDD6CB;
  --yz-text-gray: #6B655C;
  --yz-border: #D8D0C3;
  --yz-font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --yz-font-sans: 'Outfit', 'Plus Jakarta Sans', 'Jost', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
  --yz-radius-pill: 9999px;
  --yz-radius-card: 16px;
}

/* Quote Planner Section Container */
.quote-planner-section {
  background-color: var(--yz-bg);
  padding: 40px 0 60px;
  font-family: var(--yz-font-sans);
  color: var(--yz-charcoal);
}

/* Linear Progress Bar Line */
.yz-progress-bar-container {
  max-width: 860px;
  height: 6px;
  background: #E0D9CD;
  border-radius: 3px;
  margin: 0 auto 20px;
  position: relative;
  overflow: hidden;
}

.yz-progress-bar-fill {
  height: 100%;
  background: var(--yz-primary);
  width: 16.66%;
  transition: width 0.4s ease;
}

/* Breadcrumbs Summary Bar */
.yz-pill-summary-bar {
  max-width: 860px;
  margin: 0 auto 30px;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.yz-summary-pill {
  background: var(--yz-white);
  border: 1px solid var(--yz-border);
  border-radius: var(--yz-radius-pill);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--yz-charcoal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.yz-summary-pill:hover {
  background: var(--yz-primary-light);
  border-color: var(--yz-primary);
  color: var(--yz-primary-hover);
  transform: translateY(-1px);
}

.yz-summary-pill i {
  font-size: 10px;
  color: var(--yz-primary);
}

/* Main Wizard Content Area */
.yz-wizard-wrapper {
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.yz-step-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}

.yz-step-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Headings */
.yz-step-title {
  font-family: var(--yz-font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--yz-charcoal);
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

@media (max-width: 768px) {
  .yz-step-title {
    font-size: 26px;
  }
}

.yz-step-subtitle {
  font-size: 15px;
  color: var(--yz-text-gray);
  text-align: center;
  max-width: 620px;
  margin: 0 auto 28px;
  line-height: 1.5;
}

/* Toggle Pill Switcher */
.yz-toggle-switch {
  display: flex;
  justify-content: center;
  margin: 0 auto 28px;
}

.yz-toggle-switch-inner {
  background: var(--yz-pill-gray);
  padding: 4px;
  border-radius: var(--yz-radius-pill);
  display: inline-flex;
}

.yz-toggle-btn {
  border: none;
  background: transparent;
  padding: 9px 24px;
  border-radius: var(--yz-radius-pill);
  font-size: 14px;
  font-weight: 700;
  color: var(--yz-text-gray);
  cursor: pointer;
  transition: all 0.25s ease;
}

.yz-toggle-btn.active {
  background: var(--yz-charcoal);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   STEP 1: PLANNING STAGE
   ========================================================================== */
.yz-stage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .yz-stage-grid {
    grid-template-columns: 1fr;
  }
}

.yz-stage-card {
  background: var(--yz-white);
  border: 2px solid var(--yz-border);
  border-radius: var(--yz-radius-card);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.yz-stage-card:hover {
  border-color: var(--yz-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 110, 27, 0.1);
}

.yz-stage-card.selected {
  border-color: var(--yz-primary);
  background: var(--yz-primary-light);
}

.yz-stage-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--yz-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--yz-primary);
  margin-bottom: 14px;
}

.yz-stage-card.selected .yz-stage-icon {
  background: var(--yz-primary);
  color: #FFFFFF;
}

.yz-stage-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--yz-charcoal);
  margin-bottom: 6px;
}

.yz-stage-desc {
  font-size: 12px;
  color: var(--yz-text-gray);
  line-height: 1.4;
}

/* ==========================================================================
   STEP 2: DESTINATIONS & SAFARI STYLES
   ========================================================================== */
.yz-dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 820px;
  margin: 0 auto 24px;
}

@media (max-width: 768px) {
  .yz-dest-grid {
    grid-template-columns: 1fr;
  }
}

.yz-dest-card {
  background: var(--yz-white);
  border: 2px solid var(--yz-border);
  border-radius: var(--yz-radius-card);
  padding: 22px 20px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.yz-dest-card:hover {
  border-color: var(--yz-primary);
  transform: translateY(-3px);
}

.yz-dest-card.selected {
  border-color: var(--yz-primary);
  background: var(--yz-primary-light);
}

.yz-dest-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.yz-dest-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--yz-charcoal);
}

.yz-dest-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--yz-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-size: 11px;
}

.yz-dest-card.selected .yz-dest-check {
  background: var(--yz-primary);
  border-color: var(--yz-primary);
  color: #FFFFFF;
}

.yz-dest-desc {
  font-size: 12px;
  color: var(--yz-text-gray);
  line-height: 1.4;
}

/* Styles grid */
.yz-styles-wrapper {
  background: var(--yz-white);
  border: 2px solid var(--yz-border);
  border-radius: var(--yz-radius-card);
  padding: 24px;
  max-width: 820px;
  margin: 0 auto;
  display: none;
  animation: fadeIn 0.3s ease;
}

.yz-styles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

@media (max-width: 768px) {
  .yz-styles-grid {
    grid-template-columns: 1fr;
  }
}

.yz-style-card {
  background: var(--yz-bg);
  border: 1.5px solid var(--yz-border);
  border-radius: 12px;
  padding: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.yz-style-card:hover {
  border-color: var(--yz-primary);
  background: #FFFDF8;
}

.yz-style-card.selected {
  border-color: var(--yz-primary);
  background: var(--yz-primary-light);
}

.yz-style-card.hidden {
  display: none !important;
}

.yz-style-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--yz-charcoal);
  margin-bottom: 4px;
}

.yz-style-title i {
  color: var(--yz-primary);
}

.yz-style-desc {
  font-size: 11px;
  color: var(--yz-text-gray);
  line-height: 1.3;
}

/* ==========================================================================
   STEP 3: WHEN WOULD YOU LIKE TO GO?
   ========================================================================== */
.yz-year-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--yz-charcoal);
}

.yz-year-select {
  border: 1.5px solid var(--yz-border);
  background: var(--yz-white);
  padding: 6px 18px;
  border-radius: var(--yz-radius-pill);
  font-size: 14px;
  font-weight: 700;
  color: var(--yz-charcoal);
  cursor: pointer;
  outline: none;
}

.yz-year-select:focus {
  border-color: var(--yz-primary);
}

.yz-months-pill-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px 10px;
  max-width: 820px;
  margin: 0 auto 16px;
}

@media (max-width: 768px) {
  .yz-months-pill-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.yz-month-pill {
  border: none;
  background: var(--yz-white);
  border: 1.5px solid var(--yz-border);
  color: var(--yz-charcoal);
  padding: 12px 6px;
  border-radius: var(--yz-radius-pill);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yz-month-pill:hover:not(.disabled) {
  border-color: var(--yz-primary);
  background: var(--yz-primary-subtle);
  transform: translateY(-2px);
}

.yz-month-pill.selected {
  background: var(--yz-primary);
  border-color: var(--yz-primary);
  color: #FFFFFF;
}

.yz-month-pill.disabled {
  background: var(--yz-pill-disabled);
  border-color: transparent;
  color: #8C867D;
  cursor: not-allowed;
  opacity: 0.8;
}

.yz-any-month-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.yz-any-month-pill {
  background: var(--yz-white);
  border: 1.5px solid var(--yz-border);
  padding: 10px 32px;
  border-radius: var(--yz-radius-pill);
  font-size: 14px;
  font-weight: 700;
  color: var(--yz-charcoal);
  cursor: pointer;
  transition: all 0.2s ease;
}

.yz-any-month-pill:hover {
  border-color: var(--yz-primary);
  background: var(--yz-primary-subtle);
}

.yz-any-month-pill.selected {
  background: var(--yz-primary);
  border-color: var(--yz-primary);
  color: #FFFFFF;
}

.yz-exact-dates-box {
  background: var(--yz-white);
  border: 2px solid var(--yz-border);
  border-radius: var(--yz-radius-card);
  padding: 24px;
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   STEP 4: WHO ARE YOU TRAVELLING WITH?
   ========================================================================== */
.yz-party-pills-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto 28px;
}

.yz-party-pill {
  background: var(--yz-white);
  border: 1.5px solid var(--yz-border);
  color: var(--yz-charcoal);
  padding: 12px 28px;
  border-radius: var(--yz-radius-pill);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.yz-party-pill:hover {
  border-color: var(--yz-primary);
  background: var(--yz-primary-subtle);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 110, 27, 0.1);
}

.yz-party-pill.selected {
  background: var(--yz-primary);
  border-color: var(--yz-primary);
  color: #FFFFFF;
}

.yz-party-steppers {
  background: var(--yz-white);
  border: 2px solid var(--yz-border);
  border-radius: var(--yz-radius-card);
  padding: 24px 28px;
  max-width: 620px;
  margin: 0 auto;
  animation: fadeIn 0.3s ease;
}

.yz-stepper-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #EFEAE2;
}

.yz-stepper-row:last-child {
  border-bottom: none;
}

.yz-stepper-label h4 {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 2px;
}

.yz-stepper-label p {
  font-size: 12px;
  color: var(--yz-text-gray);
  margin: 0;
}

.yz-stepper-ctrls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.yz-step-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--yz-border);
  background: var(--yz-bg);
  color: var(--yz-charcoal);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.yz-step-btn:hover:not(:disabled) {
  background: var(--yz-primary);
  border-color: var(--yz-primary);
  color: #FFFFFF;
}

.yz-step-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.yz-step-num {
  font-size: 20px;
  font-weight: 800;
  min-width: 24px;
  text-align: center;
}

/* ==========================================================================
   STEP 5: DO YOU HAVE A BUDGET IN MIND?
   ========================================================================== */
.yz-currency-pills {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.yz-curr-btn {
  border: 1.5px solid var(--yz-border);
  background: var(--yz-white);
  padding: 6px 18px;
  border-radius: var(--yz-radius-pill);
  font-size: 13px;
  font-weight: 700;
  color: var(--yz-charcoal);
  cursor: pointer;
  transition: all 0.2s ease;
}

.yz-curr-btn.active {
  background: var(--yz-primary);
  border-color: var(--yz-primary);
  color: #FFFFFF;
}

.yz-slider-container {
  max-width: 720px;
  margin: 40px auto 30px;
  position: relative;
}

.yz-slider-bubble-wrap {
  position: relative;
  width: 100%;
  height: 36px;
  margin-bottom: 8px;
}

.yz-slider-bubble {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  font-size: 15px;
  font-weight: 800;
  color: var(--yz-primary);
  background: var(--yz-primary-light);
  padding: 3px 12px;
  border-radius: var(--yz-radius-pill);
  border: 1px solid var(--yz-primary);
  white-space: nowrap;
  transition: left 0.1s ease;
}

.yz-range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #E0D9CD;
  outline: none;
}

.yz-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--yz-primary);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(212, 110, 27, 0.4);
  transition: transform 0.15s ease;
}

.yz-range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.25);
  background: var(--yz-primary-hover);
}

.yz-slider-bounds {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--yz-charcoal);
}

.yz-inclusions-note {
  max-width: 680px;
  margin: 20px auto 0;
  text-align: center;
  font-size: 13px;
  color: var(--yz-text-gray);
  line-height: 1.5;
}

/* ==========================================================================
   STEP 6: YOUR DETAILS
   ========================================================================== */
.yz-contact-card {
  background: var(--yz-white);
  border: 2px solid var(--yz-border);
  border-radius: var(--yz-radius-card);
  padding: 32px;
  max-width: 680px;
  margin: 0 auto;
}

.yz-form-group {
  margin-bottom: 16px;
}

.yz-form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--yz-charcoal);
  margin-bottom: 6px;
  display: block;
}

.yz-form-group .form-control,
.yz-form-group .form-select {
  border: 1.5px solid var(--yz-border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
}

.yz-form-group .form-control:focus,
.yz-form-group .form-select:focus {
  border-color: var(--yz-primary);
  box-shadow: 0 0 0 3px rgba(212, 110, 27, 0.2);
}

/* ==========================================================================
   NAVIGATION ACTION BUTTONS (Previous & Next/Submit)
   ========================================================================== */
.yz-nav-buttons-row {
  max-width: 820px;
  margin: 36px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.yz-btn-prev {
  background: var(--yz-white);
  border: 1.5px solid var(--yz-charcoal);
  color: var(--yz-charcoal);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: var(--yz-radius-pill);
  cursor: pointer;
  transition: all 0.2s ease;
}

.yz-btn-prev:hover:not(:disabled) {
  background: var(--yz-charcoal);
  color: #FFFFFF;
}

.yz-btn-prev:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  border-color: var(--yz-border);
}

.yz-btn-next {
  background: var(--yz-primary);
  border: 1.5px solid var(--yz-primary);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 36px;
  border-radius: var(--yz-radius-pill);
  cursor: pointer;
  transition: all 0.2s ease;
}

.yz-btn-next:hover {
  background: var(--yz-primary-hover);
  border-color: var(--yz-primary-hover);
  transform: translateY(-1px);
}

.yz-btn-next.disabled,
.yz-btn-next:disabled {
  background: #E5DFD5;
  border-color: #E5DFD5;
  color: #9C958A;
  cursor: not-allowed;
  transform: none;
}

/* Confirmation Modal */
.yz-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(20, 19, 17, 0.85);
  backdrop-filter: blur(5px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.yz-modal-overlay.active {
  display: flex;
}

.yz-modal-box {
  background: var(--yz-white);
  border-radius: 20px;
  max-width: 580px;
  width: 100%;
  padding: 36px 30px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.yz-modal-box h2 {
  font-family: var(--yz-font-serif);
  font-size: 28px;
  margin: 12px 0 8px;
}
