/* Journey Section Styles */
.journey-section {
    padding: 6rem 2rem;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 1px;
}

.journey-underline {
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    margin: 0 auto 3rem;
    position: relative;
}

.journey-underline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    filter: blur(8px);
    opacity: 0.6;
}

.journey-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.journey-card {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    background-color: rgba(30, 45, 61, 0.6);
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid rgba(78, 205, 196, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.journey-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1) 0%, rgba(30, 45, 61, 0) 50%);
    pointer-events: none;
}

.journey-card:hover {
    transform: translateY(-10px);
    border-color: rgba(78, 205, 196, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(78, 205, 196, 0.3);
}

.card-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(78, 205, 196, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(78, 205, 196, 0.3);
    position: relative;
}

.card-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(78, 205, 196, 0.2);
    filter: blur(8px);
    z-index: -1;
}

.card-icon i {
    font-size: 1.75rem;
    color: var(--primary);
}

.journey-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
    position: relative;
    display: inline-block;
}

.journey-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.journey-card p {
    color: #ccc;
    line-height: 1.7;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .journey-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .journey-card {
        max-width: 500px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .journey-card {
        padding: 1.5rem;
    }
}