/* Video Consultation Modal Styles (Light Saffron Theme) */
.vc-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 16px;
}

.vc-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.vc-modal {
  background: #ffffff !important;
  border: 1px solid #ffcca0 !important;
  border-radius: 20px !important;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 25px rgba(255, 140, 0, 0.15) !important;
  position: relative;
  color: #2c1810 !important;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vc-modal-overlay.active .vc-modal {
  transform: translateY(0) scale(1);
}

.vc-modal-header {
  padding: 20px 24px !important;
  background: linear-gradient(135deg, #ff8c00, #e65100) !important;
  border-bottom: 1px solid #e04800 !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vc-modal-title {
  margin: 0 !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cinzel', 'Poppins', serif !important;
}

.vc-close-btn {
  background: rgba(255, 255, 255, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: #fff !important;
  width: 32px;
  height: 32px;
  border-radius: 50% !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.vc-close-btn:hover {
  background: rgba(255, 255, 255, 0.4) !important;
}

.vc-modal-body {
  padding: 24px !important;
  background: #ffffff !important;
}

/* Wizard Steps Indicator */
.vc-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
}

.vc-steps::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 30px;
  right: 30px;
  height: 2px;
  background: #e5d8c8;
  z-index: 1;
}

.vc-step-item {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.vc-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #d8c5b2;
  color: #6b5848;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s;
}

.vc-step-item.active .vc-step-num {
  background: #ff8c00;
  border-color: #ff8c00;
  color: #fff;
  box-shadow: 0 0 12px rgba(255, 140, 0, 0.4);
}

.vc-step-item.completed .vc-step-num {
  background: #4caf50;
  border-color: #4caf50;
  color: #fff;
}

.vc-step-label {
  font-size: 0.78rem;
  color: #8c7868;
  font-weight: 600;
}

.vc-step-item.active .vc-step-label {
  color: #d96b00;
}

/* Step Content Sections */
.vc-step-content {
  display: none;
}

.vc-step-content.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

/* Date Chips */
.vc-date-picker {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.vc-date-chip {
  background: #faf7f2;
  border: 1px solid #e8ded2;
  border-radius: 12px;
  padding: 10px 16px;
  min-width: 90px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  color: #2c1810;
}

.vc-date-chip:hover {
  border-color: #ff8c00;
  background: #fff5eb;
}

.vc-date-chip.selected {
  background: linear-gradient(135deg, #ff8c00, #e65100);
  border-color: #ff8c00;
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.35);
}

/* Slot Grid */
.vc-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 8px;
  max-height: 220px;
  overflow-y: auto;
  padding-right: 5px;
  margin-bottom: 20px;
}

.vc-slot-chip {
  background: #ffffff;
  border: 1px solid #dcd0c0;
  border-radius: 8px;
  padding: 8px;
  text-align: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  color: #2c1810;
  font-weight: 500;
}

.vc-slot-chip:hover:not(.disabled) {
  border-color: #ff8c00;
  color: #d96b00;
  background: #fff5eb;
}

.vc-slot-chip.selected {
  background: #ff8c00;
  border-color: #ff8c00;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
}

.vc-slot-chip.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: #f4efe8;
  text-decoration: line-through;
}

/* Form inputs STRICT LIGHT OVERRIDE */
.vc-form-group {
  margin-bottom: 16px;
}

.vc-form-group label {
  display: block;
  font-size: 0.88rem;
  color: #4a3828 !important;
  font-weight: 600;
  margin-bottom: 6px;
}

.vc-modal input,
.vc-modal select,
.vc-modal textarea,
.vc-form-input {
  width: 100% !important;
  background: #faf7f2 !important;
  border: 1px solid #dcd0c0 !important;
  border-radius: 10px !important;
  padding: 10px 14px !important;
  color: #2c1810 !important;
  font-size: 0.95rem !important;
  outline: none !important;
  box-sizing: border-box !important;
  transition: border-color 0.2s !important;
}

.vc-modal input::placeholder,
.vc-modal textarea::placeholder {
  color: #8c7868 !important;
}

.vc-modal input:focus,
.vc-modal select:focus,
.vc-modal textarea:focus {
  border-color: #ff8c00 !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.2) !important;
}

.vc-modal select option {
  background: #ffffff !important;
  color: #2c1810 !important;
}

/* Payment box */
.vc-qr-box {
  background: #fff8f0 !important;
  border: 1px dashed #ffb870 !important;
  border-radius: 14px !important;
  padding: 20px !important;
  text-align: center;
  margin-bottom: 20px;
}

.vc-qr-img {
  width: 170px !important;
  height: 170px !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  padding: 8px !important;
  margin: 12px auto !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  border: 1px solid #f0e0cc !important;
}

.vc-upi-id {
  background: #fff0e0;
  border: 1px dashed #ffb870;
  padding: 8px 14px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #d96b00;
  font-size: 0.95rem;
  margin-top: 8px;
}

/* Buttons */
.vc-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #f0e0cc;
}

.vc-btn-next {
  background: linear-gradient(135deg, #ff8c00, #e65100) !important;
  color: #fff !important;
  border: none;
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.35);
}

.vc-btn-next:disabled {
  opacity: 0.45 !important;
  cursor: not-allowed;
}

.vc-btn-back {
  background: #ffffff !important;
  color: #5a4838 !important;
  border: 1px solid #d0c0b0 !important;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
}
