/* Enhanced Checklist CSS - Production Ready */

/* Wizard Teaser Section */
.wizard-teaser {
  padding: 60px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  margin-bottom: 40px;
}

.wizard-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.wizard-visual {
  position: relative;
}

.wizard-mockup {
  position: relative;
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  border: 2px solid #e0e0e0;
}

.wizard-screen {
  background: white;
  border-radius: 5px;
  padding: 15px;
}

.wizard-step {
  background: white;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border-left: 3px solid #667eea;
  font-size: 14px;
  color: #333;
}

.wizard-progress-bar {
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  margin-top: 15px;
  position: relative;
}

.wizard-progress-bar::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 33%;
  background: #667eea;
  border-radius: 2px;
}

.coming-soon-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ff4757;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  animation: pulse 2s infinite;
  font-size: 12px;
}

.wizard-content h2 {
  color: #333;
  margin-bottom: 15px;
  font-size: 28px;
}

.wizard-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.wizard-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.feature-tag {
  background: #f0f0f0;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  color: #333;
}

.wizard-cta {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.wizard-cta strong {
  color: #333;
  display: block;
  margin-bottom: 15px;
}

.cta-options {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.notify-option {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
}

.notify-option small {
  color: #666;
}

.notify-option a {
  color: #667eea;
  text-decoration: underline;
}

/* Enhanced Checklist Structure */
.enhanced-checklist {
  padding: 40px 0;
}

/* Sticky Navigation */
.checklist-nav-sticky {
  position: sticky;
  top: 80px;
  background: white;
  z-index: 100;
  padding: 20px 0;
  border-bottom: 2px solid #f0f0f0;
  margin-bottom: 40px;
}

.nav-pills {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 10px;
  justify-content: center;
}

.nav-pill {
  padding: 10px 20px;
  background: #f8f9fa;
  border-radius: 25px;
  text-decoration: none;
  color: #333;
  white-space: nowrap;
  transition: all 0.3s;
  font-size: 14px;
  font-weight: 500;
}

.nav-pill:hover,
.nav-pill.active {
  background: #667eea;
  color: white;
  text-decoration: none;
}

/* Timeline Visual */
.checklist-section {
  margin-bottom: 60px;
  scroll-margin-top: 140px;
}

.section-title {
  font-size: 32px;
  color: #333;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.timeline-visual {
  position: relative;
  padding-left: 60px;
}

.timeline-line {
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #667eea, #764ba2);
}

.timeline-block {
  position: relative;
  margin-bottom: 60px;
}

.timeline-marker {
  position: absolute;
  left: -45px;
  top: 0;
  width: 60px;
  height: 60px;
  background: white;
  border: 3px solid #667eea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #667eea;
  font-size: 14px;
}

.timeline-content {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.timeline-content h3 {
  color: #333;
  margin-bottom: 5px;
  font-size: 24px;
}

.timeline-subtitle {
  color: #666;
  margin-bottom: 20px;
  font-style: italic;
}

.checklist-items {
  margin-bottom: 20px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  padding: 12px;
  margin: 8px 0;
  background: #f8f9fa;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.checklist-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.item-checkbox {
  width: 20px;
  height: 20px;
  margin-right: 15px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.item-text {
  color: #333;
  line-height: 1.5;
}

.checklist-item input[type="checkbox"]:checked + .item-text {
  text-decoration: line-through;
  opacity: 0.6;
}

.timeline-tip {
  background: #fff3cd;
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid #ffc107;
  color: #856404;
  font-size: 14px;
}

/* Category Cards */
.category-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.category-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s;
  position: relative;
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.category-card.ship { border-top: 4px solid #3b82f6; }
.category-card.donate { border-top: 4px solid #10b981; }
.category-card.recycle { border-top: 4px solid #f59e0b; }
.category-card.dispose { border-top: 4px solid #ef4444; }
.category-card.unsure { border-top: 4px solid #8b5cf6; }

.card-icon {
  font-size: 48px;
  margin-bottom: 15px;
  display: block;
}

.category-card h3 {
  color: #333;
  margin-bottom: 15px;
  font-size: 20px;
}

.category-items {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.category-items li {
  padding: 8px 0;
  color: #666;
  position: relative;
  padding-left: 20px;
}

.category-items li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
}

.card-footer {
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.card-footer .tip {
  font-size: 13px;
  color: #666;
  font-style: italic;
}

/* Room Accordions */
.room-accordions {
  margin-top: 30px;
}

.room-accordion {
  background: white;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 20px;
  background: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 16px;
  text-align: left;
}

.accordion-header:hover {
  background: #f8f9fa;
}

.room-icon {
  font-size: 24px;
  margin-right: 15px;
}

.room-name {
  flex-grow: 1;
  font-weight: 600;
  color: #333;
}

.room-items {
  color: #666;
  font-size: 14px;
  margin-right: 15px;
}

.accordion-arrow {
  color: #666;
  transition: transform 0.3s;
  font-size: 14px;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f8f9fa;
}

.accordion-content.open {
  max-height: 1000px;
}

.checklist-grid {
  padding: 20px;
  display: grid;
  gap: 10px;
}

/* Service Timeline */
.service-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 30px 0;
  position: relative;
}

.service-timeline::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #e0e0e0;
  z-index: 0;
}

.service-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 70px;
  height: 70px;
  background: #667eea;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 24px;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.service-step h3 {
  color: #333;
  margin-bottom: 10px;
  font-size: 18px;
}

.service-step p {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}

.service-step .btn-sm {
  padding: 8px 20px;
  font-size: 13px;
}

/* Service CTA Box */
.service-cta-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  margin-top: 40px;
}

.service-cta-box h3 {
  color: white;
  margin-bottom: 10px;
  font-size: 28px;
}

.service-cta-box p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  font-size: 18px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Download Box */
.download-box {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 20px;
  margin-top: 40px;
}

.download-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.download-box h3 {
  color: white;
  margin-bottom: 10px;
  font-size: 24px;
}

.download-box p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.download-box small {
  display: block;
  margin-top: 15px;
  opacity: 0.8;
}

/* Button Styles */
.btn {
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn-primary {
  background: #667eea;
  color: white;
}

.btn-primary:hover {
  background: #5a67d8;
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
}

.btn-secondary {
  background: white;
  color: #667eea;
  border: 2px solid #667eea;
}

.btn-secondary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  color: #667eea;
  text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .wizard-card {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }
  
  .wizard-visual {
    margin-bottom: 30px;
  }
  
  .timeline-visual {
    padding-left: 40px;
  }
  
  .timeline-marker {
    left: -25px;
    width: 50px;
    height: 50px;
  }
  
  .timeline-line {
    left: 20px;
  }
  
  .category-cards {
    grid-template-columns: 1fr;
  }
  
  .checklist-nav-sticky {
    top: 60px;
    padding: 15px 0;
  }
  
  .nav-pills {
    justify-content: flex-start;
    padding: 0 15px;
  }
  
  .service-timeline {
    grid-template-columns: 1fr;
  }
  
  .service-timeline::before {
    display: none;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

/* Print Styles */
@media print {
  .wizard-teaser,
  .checklist-nav-sticky,
  .download-box,
  .service-cta-box {
    display: none !important;
  }
  
  .checklist-item {
    page-break-inside: avoid;
  }
  
  .accordion-content {
    max-height: none !important;
    display: block !important;
  }
  
  .category-card {
    page-break-inside: avoid;
  }
  
  .timeline-block {
    page-break-inside: avoid;
  }
}

/* Animations */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus States for Accessibility */
.btn:focus,
.accordion-header:focus,
.item-checkbox:focus {
  outline: 2px solid #667eea;
  outline-offset: 2px;
}

/* Loading State */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Progress Indicator */
.progress-bar {
  height: 4px;
  background: #e0e0e0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.progress-fill {
  height: 100%;
  background: #667eea;
  width: 0;
  transition: width 0.3s;
}