.journey {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--secondary-cream) 0%, var(--primary-cream) 100%);
    position: relative;
    overflow: hidden;
}

.journey-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.journey-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    background-size: 40% 40%;
}

.journey-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    filter: blur(40px);
}

.journey-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 5rem;
    position: relative;
    z-index: 1;
}

.journey-content {
    flex: 1;
}

.content-header {
    margin-bottom: 4rem;
}

.journey-timeline {
    position: relative;
    margin-bottom: 4rem;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    width: 2px;
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 1px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 80px;
    opacity: 0;
    transform: translateX(-30px);
    transition: var(--transition);
}

.timeline-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    z-index: 2;
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    position: relative;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -10px;
    width: 20px;
    height: 20px;
    background: var(--white);
    transform: rotate(45deg);
    border-left: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.timeline-content h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.timeline-icon {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.timeline-item:hover .timeline-icon {
    background: var(--gold-gradient);
    transform: scale(1.1) rotate(5deg);
}

.timeline-icon i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    transition: var(--transition);
}

.timeline-item:hover .timeline-icon i {
    color: var(--white);
}

.journey-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.stat-card:hover .stat-icon {
    background: var(--gold-gradient);
    transform: scale(1.1) rotate(5deg);
}

.stat-icon i {
    color: var(--accent-gold);
    font-size: 1.8rem;
    transition: var(--transition);
}

.stat-card:hover .stat-icon i {
    color: var(--white);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.journey-visual {
    flex: 1;
    position: sticky;
    top: 2rem;
}

.visual-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.main-image-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(5deg) rotateX(5deg);
    transition: var(--transition);
}

.visual-container:hover .main-image-wrapper {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0;
    transition: var(--transition);
    mix-blend-mode: overlay;
}

.visual-container:hover .image-glow {
    opacity: 0.3;
}

.achievement-badge {
    position: absolute;
    bottom: 10px;
    right: 15px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 3;
    animation: floatBadge 6s ease-in-out infinite;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.achievement-badge:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.badge-content {
    position: relative;
    z-index: 2;
}

.years {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 0.25rem;
    font-family: 'Poppins', sans-serif;
}

.label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0;
    border-radius: 20px;
    transition: var(--transition);
    z-index: 1;
}

.achievement-badge:hover .badge-glow {
    opacity: 0.1;
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
    }
}

@media screen and (max-width: 1200px) {
    .journey-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .journey-visual {
        position: static;
    }
}

@media screen and (max-width: 768px) {
    .journey {
        padding: 4rem 1.5rem;
    }

    .journey-timeline::before {
        left: 25px;
    }

    .timeline-item {
        padding-left: 70px;
    }

    .timeline-year {
        width: 50px;
        height: 50px;
        font-size: 0.8rem;
    }

    .timeline-content::before {
        left: -8px;
        width: 16px;
        height: 16px;
    }

    .journey-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .achievement-badge {
        position: static;
        margin-top: 2rem;
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 480px) {
    .journey-stats {
        grid-template-columns: 1fr;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
}