
/* Block 1 */
.hero-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(1px);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-banner .container {
  position: relative;
  z-index: 2;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.hero-content {
  color: white;
  animation: fadeInUp 1s ease-out;
}

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

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #ffffff, #e2e8f0);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  color: #e2e8f0;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn-primary-custom {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.btn-secondary-custom {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-secondary-custom:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: #cbd5e1;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.floating-card {
  position: absolute;
  top: 20%;
  right: -10%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 6s ease-in-out infinite;
  max-width: 200px;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.transport-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.floating-card span {
  font-weight: 600;
  color: #1e293b;
  flex: 1;
  font-size: 0.95rem;
}

.price-tag {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .hero-banner .container {
    padding-top: 1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-primary-custom,
  .btn-secondary-custom {
    width: 100%;
    text-align: center;
  }
  
  .hero-stats {
    gap: 2rem;
    justify-content: center;
  }
  
  .floating-card {
    position: static;
    margin-top: 2rem;
    max-width: 100%;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .floating-card {
    padding: 1rem;
  }
}

/* Block 2 */
.sustainable-travel-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8fffe 0%, #f0f9f4 50%, #e8f5e8 100%);
            position: relative;
            overflow: hidden;
        }
        
        .sustainable-travel-section::before {
            content: '';
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%2334d399" opacity="0.1"/></svg>');
            background-size: 50px 50px;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
        }
        
        .container {
            position: relative;
            z-index: 2;
        }
        
        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #34d399, #059669);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(52, 211, 153, 0.3);
        }
        
        .sustainable-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: #1f2937;
            line-height: 1.2;
            margin-bottom: 24px;
        }
        
        .sustainable-description {
            font-size: 1.1rem;
            color: #6b7280;
            line-height: 1.7;
            margin-bottom: 40px;
        }
        
        .eco-features {
            margin-bottom: 40px;
        }
        
        .eco-feature {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 15px;
            border-left: 4px solid #34d399;
            transition: all 0.3s ease;
        }
        
        .eco-feature:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 25px rgba(52, 211, 153, 0.15);
        }
        
        .eco-icon img {
            width: 48px;
            height: 48px;
            border-radius: 12px;
        }
        
        .eco-text h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 8px;
        }
        
        .eco-text p {
            color: #6b7280;
            margin: 0;
            font-size: 0.95rem;
        }
        
        .impact-counter {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
            padding: 25px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 20px;
            border: 2px solid #d1fae5;
        }
        
        .counter-item {
            text-align: center;
        }
        
        .counter-number {
            font-size: 2rem;
            font-weight: 800;
            color: #059669;
            display: block;
            line-height: 1;
        }
        
        .counter-label {
            font-size: 0.85rem;
            color: #6b7280;
            font-weight: 500;
            margin-top: 5px;
        }
        
        .btn-eco-action {
            background: linear-gradient(135deg, #34d399, #059669);
            color: white;
            border: none;
            padding: 16px 32px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(52, 211, 153, 0.4);
        }
        
        .btn-eco-action:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(52, 211, 153, 0.5);
            background: linear-gradient(135deg, #059669, #047857);
        }
        
        .sustainable-visual {
            position: relative;
        }
        
        .visual-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 15px;
            height: 400px;
        }
        
        .visual-item {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .visual-item:hover {
            transform: scale(1.05);
        }
        
        .visual-item.large {
            grid-row: 1 / 3;
        }
        
        .visual-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .floating-eco-card {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: white;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            border-top: 3px solid #34d399;
            min-width: 200px;
        }
        
        .eco-card-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }
        
        .eco-card-header img {
            width: 24px;
            height: 24px;
        }
        
        .eco-status {
            background: #d1fae5;
            color: #059669;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .route-info {
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 8px;
        }
        
        .eco-savings {
            display: flex;
            align-items: baseline;
            gap: 8px;
        }
        
        .savings-amount {
            font-size: 1.4rem;
            font-weight: 700;
            color: #059669;
        }
        
        .vs-comparison {
            font-size: 0.85rem;
            color: #6b7280;
        }
        
        @media (max-width: 768px) {
            .sustainable-title {
                font-size: 2.2rem;
            }
            
            .impact-counter {
                flex-direction: column;
                gap: 20px;
            }
            
            .visual-grid {
                height: 300px;
            }
            
            .floating-eco-card {
                position: relative;
                bottom: 0;
                right: 0;
                margin-top: 20px;
            }
            
            .eco-feature {
                flex-direction: column;
                text-align: center;
            }
        }

/* Block 3 */
.ai-travel-assistant {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
    position: relative;
    overflow: hidden;
}

.ai-travel-assistant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.ai-header {
    text-align: center;
    margin-bottom: 80px;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.ai-badge img {
    width: 24px;
    height: 24px;
}

.ai-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.ai-chat-interface {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e8f2ff;
}

.chat-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.chat-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.chat-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 600;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.chat-messages {
    padding: 32px 24px;
    max-height: 400px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.message {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.user-message {
    flex-direction: row-reverse;
}

.message-avatar img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.ai-message .message-content {
    background: #f8faff;
    border: 1px solid #e8f2ff;
    border-radius: 18px 18px 18px 4px;
}

.user-message .message-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 18px 18px 4px 18px;
}

.message-content {
    padding: 16px 20px;
    max-width: 80%;
    line-height: 1.5;
}

.ai-suggestions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.suggestion-tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 500;
}

.route-preview {
    margin-top: 16px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e8f2ff;
}

.route-stops {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.stop {
    background: #667eea;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.route-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, #667eea, #764ba2);
    margin: 0 8px;
}

.route-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.route-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #667eea;
}

.route-duration {
    color: #6c757d;
    font-weight: 500;
}

.chat-input {
    padding: 20px 24px;
    border-top: 1px solid #e8f2ff;
    display: flex;
    gap: 12px;
}

.chat-input-field {
    flex: 1;
    border: 2px solid #e8f2ff;
    border-radius: 24px;
    padding: 12px 20px;
    outline: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.chat-input-field:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.chat-send-btn {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.chat-send-btn:hover {
    transform: scale(1.05);
}

.chat-send-btn img {
    width: 20px;
    height: 20px;
}

.ai-features {
    padding-left: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.ai-feature {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8f2ff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 32px;
    height: 32px;
}

.ai-feature h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.ai-feature p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
}

.ai-stats {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.stat-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8f2ff;
    min-width: 120px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 8px;
}

.stat-label {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.ai-demo-section {
    text-align: center;
    padding: 48px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8f2ff;
}

.ai-demo-section h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 32px;
}

.demo-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.demo-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: #f8faff;
    border: 2px solid #e8f2ff;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #6c757d;
}

.demo-btn.active,
.demo-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.demo-btn img {
    width: 24px;
    height: 24px;
}

.demo-preview {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.demo-preview img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.demo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.demo-preview:hover .demo-overlay {
    opacity: 1;
}

.play-button img {
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover img {
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .ai-features {
        padding-left: 0;
        margin-top: 40px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ai-title {
        font-size: 2.5rem;
    }

    .ai-subtitle {
        font-size: 1.1rem;
    }

    .demo-controls {
        flex-direction: column;
        align-items: center;
    }

    .ai-stats {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .ai-travel-assistant {
        padding: 80px 0;
    }

    .ai-header {
        margin-bottom: 60px;
    }

    .ai-title {
        font-size: 2rem;
    }

    .chat-messages {
        padding: 24px 16px;
    }

    .message-content {
        max-width: 90%;
    }

    .route-stops {
        flex-direction: column;
        gap: 12px;
    }

    .route-line {
        width: 2px;
        height: 20px;
        margin: 0;
    }
}

/* Block 4 */
.order-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
    position: relative;
}

.order-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(102, 126, 234, 0.05) 0%, transparent 100%);
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.form-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.form-badge img {
    width: 20px;
    height: 20px;
}

.form-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.form-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.booking-form-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    gap: 20px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    background: #e9ecef;
    color: #6c757d;
    transition: all 0.3s ease;
}

.progress-step.completed .step-number {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.progress-step.active .step-number {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(102, 126, 234, 0); }
    100% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0); }
}

.step-label {
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
    text-align: center;
}

.progress-step.completed .step-label,
.progress-step.active .step-label {
    color: #667eea;
}

.progress-line {
    width: 60px;
    height: 2px;
    background: #e9ecef;
    margin: 0 10px;
}

.progress-line.completed {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.progress-line.active {
    background: linear-gradient(90deg, #667eea 50%, #e9ecef 50%);
    animation: progressFill 1s ease-out;
}

@keyframes progressFill {
    from { background: linear-gradient(90deg, #667eea 0%, #e9ecef 0%); }
    to { background: linear-gradient(90deg, #667eea 50%, #e9ecef 50%); }
}

.selected-journey-preview {
    background: linear-gradient(135deg, #f8faff, #f0f4ff);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.journey-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.journey-header img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}

.journey-details h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.journey-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.journey-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #667eea;
}

.journey-meta img {
    width: 16px;
    height: 16px;
}

.journey-segments {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.segment {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.transport-mode img {
    width: 32px;
    height: 32px;
}

.segment-details {
    flex: 1;
}

.segment-route {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.segment-time {
    font-size: 14px;
    color: #666;
}

.segment-class {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field-label {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 15px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.field-icon {
    position: absolute;
    left: 16px;
    width: 20px;
    height: 20px;
    z-index: 2;
}

.form-input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.form-input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.field-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    margin-top: 4px;
}

.field-hint img {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

.booking-extras {
    margin-bottom: 32px;
    padding: 24px;
    background: #f8faff;
    border-radius: 16px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.extras-header {
    text-align: center;
    margin-bottom: 24px;
}

.extras-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.extras-header p {
    color: #666;
    font-size: 14px;
}

.extras-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.extra-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
}

.extra-option:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}

.extra-checkbox {
    position: relative;
}

.extra-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
}

.extra-details {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.extra-details img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.extra-text h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.extra-text p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

.extra-price {
    font-weight: 700;
    color: #667eea;
    font-size: 16px;
}

.booking-summary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 32px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.summary-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.summary-row.total {
    font-size: 1.2rem;
    font-weight: 700;
    padding-top: 16px;
    margin-top: 8px;
}

.summary-label {
    font-weight: 500;
}

.summary-value {
    font-weight: 700;
}

.form-actions {
    text-align: center;
}

.btn-confirm-booking {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-confirm-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.btn-confirm-booking img {
    width: 20px;
    height: 20px;
}

.btn-subtitle {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.9;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.security-badges img {
    height: 32px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.security-badges img:hover {
    opacity: 1;
}

.booking-assistance {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.assistance-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.assistance-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.assistance-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.assistance-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.assistance-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

.assistance-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.assistance-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8faff;
    border-radius: 12px;
}

.assistance-option img {
    width: 24px;
    height: 24px;
}

.option-text {
    flex: 1;
}

.option-text h5 {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.option-text p {
    font-size: 12px;
    color: #666;
    margin-bottom: 0;
}

.option-status {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
}

.option-status.online {
    background: #d4edda;
    color: #155724;
}

.option-hours {
    font-size: 12px;
    font-weight: 600;
    color: #667eea;
}

.btn-contact-support {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.btn-contact-support:hover {
    transform: translateY(-1px);
}

.btn-contact-support img {
    width: 16px;
    height: 16px;
}

.trust-indicators {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.trust-indicators h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    text-align: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
}

.trust-item img {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .form-title {
        font-size: 2.2rem;
    }
    
    .booking-form-container {
        padding: 24px;
    }
    
    .form-progress {
        gap: 10px;
    }
    
    .progress-line {
        width: 40px;
    }
    
    .step-label {
        display: none;
    }
    
    .journey-header {
        flex-direction: column;
        text-align: center;
    }
    
    .journey-meta {
        justify-content: center;
    }
    
    .segment {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .extras-grid {
        gap: 12px;
    }
    
    .extra-option {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .security-badges {
        flex-wrap: wrap;
        gap: 12px;
    }
}
