/* Menu Import Section */
.import-section {
  background: linear-gradient(180deg, #fefaf6 0%, #fff7ed 50%, #fef7ed 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.import-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(800px 600px at 85% 20%, rgba(249,115,22,.08), transparent),
              radial-gradient(600px 400px at 15% 80%, rgba(245,158,11,.06), transparent);
  pointer-events: none;
}

.import-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.import-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.import-content {
  max-width: 600px;
}

.import-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.import-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  background: linear-gradient(135deg, #7c2d12 0%, #ea580c 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.import-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: #475569;
  line-height: 1.6;
  margin: 0 0 32px;
}

.import-features {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
}

.import-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  border: 1px solid rgba(249, 115, 22, 0.1);
  transition: all 0.3s ease;
}

.import-feature:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(249, 115, 22, 0.2);
  transform: translateX(8px);
}

.feature-icon {
  font-size: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff7ed, #fef3e7);
  border-radius: 8px;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #7c2d12;
  margin: 0 0 4px;
}

.feature-text p {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
}

.import-process {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  border: 2px solid rgba(249, 115, 22, 0.1);
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 8px;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.step-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #7c2d12;
}

.process-arrow {
  font-size: 1.5rem;
  color: #fb923c;
  margin: 0 16px;
  animation: pulse 2s infinite;
}

.import-cta {
  text-align: left;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.import-note {
  text-align: center;
  margin-top: 12px;
}

.import-note small {
  color: #64748b;
  font-size: 0.85rem;
}

/* Visual Animation Section */
.import-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.import-animation {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 500px;
}

.upload-zone {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 180px;
  background: #fff;
  border: 3px dashed #fb923c;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(249, 115, 22, 0.1);
}

.upload-icon {
  font-size: 3rem;
  margin-bottom: 8px;
  animation: bounce 2s infinite;
}

.upload-text {
  font-weight: 600;
  color: #7c2d12;
  margin-bottom: 12px;
}

.supported-formats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.format-tag {
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

.analysis-indicator {
  position: absolute;
  top: 220px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(249, 115, 22, 0.15);
  animation: slideInUp 1s ease-out 2s both;
}

.ai-pulse {
  width: 12px;
  height: 12px;
  background: #f97316;
  border-radius: 50%;
  animation: aiPulse 1.5s infinite;
}

.analysis-text {
  font-weight: 600;
  color: #7c2d12;
  font-size: 0.9rem;
}

.result-preview {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(249, 115, 22, 0.2);
  animation: slideInUp 1s ease-out 4s both;
  opacity: 0;
}

.qr-preview {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
}

.qr-code {
  width: 60px;
  height: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  flex-shrink: 0;
}

.qr-square {
  background: #1f2937;
  border-radius: 2px;
  animation: qrFlicker 0.5s infinite alternate;
}

.qr-square:nth-child(2) {
  animation-delay: 0.1s;
}

.qr-square:nth-child(3) {
  animation-delay: 0.2s;
}

.qr-square:nth-child(4) {
  animation-delay: 0.3s;
}

.menu-preview {
  flex: 1;
}

.menu-item {
  height: 12px;
  background: linear-gradient(90deg, #f1f5f9 0%, #e2e8f0 50%, #f1f5f9 100%);
  border-radius: 6px;
  margin-bottom: 6px;
  animation: shimmer 1.5s infinite;
}

.menu-item:last-child {
  width: 70%;
  margin-bottom: 0;
}

.success-badge {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  animation: successPop 0.5s ease-out 5s both;
  opacity: 0;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0px); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
  40%, 43% { transform: translateY(-8px); }
  70% { transform: translateY(-4px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(40px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes aiPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

@keyframes qrFlicker {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}

@keyframes shimmer {
  0% { background-position: -200px 0; }
  100% { background-position: 200px 0; }
}

@keyframes successPop {
  0% { opacity: 0; transform: scale(0.8); }
  50% { transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .import-grid {
    gap: 60px;
  }
  
  .import-animation {
    max-width: 350px;
    height: 450px;
  }
}

@media (max-width: 768px) {
  .import-section {
    padding: 64px 0;
  }
  
  .import-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .import-content {
    text-align: center;
  }
  
  .import-process {
    flex-direction: column;
    gap: 20px;
  }
  
  .process-arrow {
    transform: rotate(90deg);
    margin: 8px 0;
  }
  
  .import-animation {
    max-width: 320px;
    height: 400px;
    margin: 0 auto;
  }
  
  .upload-zone {
    width: 240px;
    height: 150px;
  }
  
  .result-preview {
    width: 220px;
  }
}

@media (max-width: 480px) {
  .import-container {
    padding: 0 20px;
  }
  
  .import-features {
    gap: 16px;
  }
  
  .import-feature {
    padding: 12px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .import-animation {
    max-width: 280px;
  }
  
  .upload-zone {
    width: 200px;
    height: 130px;
  }
}

