/* Roadmap Page Styles */

/* Roadmap Hero Section */
.roadmap-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.roadmap-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.roadmap-hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.roadmap-hero-text {
    flex: 1;
    color: white;
}

.roadmap-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.1;
}

.roadmap-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.tagline-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px 32px;
    margin-bottom: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.tagline {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-align: center;
    line-height: 1.3;
}

.roadmap-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
}

.roadmap-hero-image {
    flex: 1;
    position: relative;
}

.roadmap-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-element {
    position: absolute;
    font-size: 2.5rem;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1.5s;
}

.element-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 3s;
}

.element-4 {
    bottom: 10%;
    right: 10%;
    animation-delay: 4.5s;
}

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

/* Roadmap Steps Section */
.roadmap-steps {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.steps-container {
    display: grid;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.roadmap-step {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.roadmap-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.roadmap-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
}

.step-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 16px;
}

.step-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 24px;
}

.step-details {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #f7fafc;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #4a5568;
    border: 1px solid #e2e8f0;
}

.detail-item i {
    color: #667eea;
    font-size: 1.1rem;
}

/* Journey Progress Section */
.journey-progress {
    padding: 80px 0;
    background: #f8f9fa;
}

.progress-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.progress-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 16px;
}

.progress-content p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 60px;
}

.progress-bar-container {
    position: relative;
}

.progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 20px;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 60px;
    right: 60px;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.progress-step:hover {
    transform: translateY(-3px);
}

.progress-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.progress-step.active .progress-dot {
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

.progress-step span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a5568;
    text-align: center;
}

.progress-step.active span {
    color: #667eea;
}

/* CTA Section */
.roadmap-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.cta-content {
    color: white;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .roadmap-hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .roadmap-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.4rem;
    }
    
    .roadmap-step {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.5rem;
    }
    
    .progress-bar {
        padding: 0 10px;
    }
    
    .progress-bar::before {
        left: 40px;
        right: 40px;
    }
    
    .progress-dot {
        width: 30px;
        height: 30px;
    }
    
    .progress-step span {
        font-size: 0.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .roadmap-hero {
        padding: 100px 0 60px;
    }
    
    .roadmap-hero-text h1 {
        font-size: 2rem;
    }
    
    .tagline-box {
        padding: 20px 24px;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .step-details {
        flex-direction: column;
    }
    
    .detail-item {
        width: 100%;
    }
}
