/* Roadmap Section Styles */
.roadmap-section {
    padding: 100px 0;
    background-image: url('../images/backgruond.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.roadmap-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.roadmap-section .container {
    position: relative;
    z-index: 2;
}

.roadmap-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    height: 100%;
    width: 2px;
    background: #d4af37;
}

.roadmap-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.roadmap-badge {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    margin-right: 2rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    text-align: center;
    line-height: 1.2;
    padding: 0.5rem;
}

.roadmap-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border-left: 3px solid #d4af37;
    flex: 1;
    backdrop-filter: blur(10px);
}

.roadmap-content h3 {
    color: #d4af37;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.roadmap-content p {
    color: #ccc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.roadmap-content ul {
    list-style: none;
    margin-bottom: 1rem;
}

.roadmap-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #fff;
}

.roadmap-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

.roadmap-time {
    display: inline-block;
    background: #d4af37;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .roadmap-timeline::before {
        display: none;
    }

    .roadmap-item {
        flex-direction: column;
        text-align: center;
    }

    .roadmap-badge {
        margin: 0 auto 1rem auto;
    }

    .roadmap-content {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .roadmap-section {
        padding: 60px 0;
    }

    .roadmap-content {
        padding: 1.5rem;
    }

    .roadmap-content h3 {
        font-size: 1.2rem;
    }
}
