/* ========== YOLCULUK SECTION ========== */
#yolculuk {
    background: radial-gradient(circle at top, rgba(24,36,25,0.7), rgba(5,7,5,1));
}

.timeline {
    position: relative;
    margin-top: 10px;
    padding-left: 10px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(134,183,106,0.8), rgba(134,183,106,0.4), rgba(134,183,106,0.1));
    box-shadow: 0 0 10px rgba(134,183,106,0.5);
}

.timeline-step {
    position: relative;
    padding-left: 30px;
    margin-bottom: 28px;
    opacity: 0;
    transform: translate3d(-60px, 30px, -50px) rotateY(-20deg);
    transition: all 1000ms cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    border-radius: 16px;
    padding: 20px 20px 20px 40px;
    background: rgba(10,14,11,0.3);
    border: 1px solid rgba(134,183,106,0.1);
}

.timeline-step.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateY(0);
}

.timeline-step::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: radial-gradient(circle at 0% 50%, rgba(134,183,106,0.1), transparent 70%);
    opacity: 0;
    transition: opacity 500ms ease-out;
    pointer-events: none;
}

.timeline-step:hover::before {
    opacity: 1;
}

.timeline-step:hover {
    transform: translate3d(15px, -8px, 30px) rotateY(3deg);
    background: rgba(10,14,11,0.6);
    border-color: rgba(134,183,106,0.3);
    box-shadow: 
        0 20px 50px rgba(0,0,0,0.9),
        0 0 40px rgba(134,183,106,0.3);
}

.timeline-bullet {
    position: absolute;
    left: 16px;
    top: 28px;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: radial-gradient(circle at center, var(--accent-green), #2d4423);
    box-shadow: 0 0 20px rgba(134,183,106,0.9), 0 0 40px rgba(134,183,106,0.5);
    animation: bulletPulse 2s ease-in-out infinite;
    transition: all 400ms ease-out;
    z-index: 2;
}

.timeline-step:hover .timeline-bullet {
    transform: scale(1.6);
    box-shadow: 0 0 35px rgba(134,183,106,1), 0 0 70px rgba(134,183,106,0.8);
}

@keyframes bulletPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.timeline-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent-green);
    margin-bottom: 8px;
    transition: all 300ms ease-out;
    font-weight: 600;
}

.timeline-step:hover .timeline-label {
    color: var(--text-light);
    letter-spacing: 0.22em;
    transform: translateX(5px);
}

.timeline-title {
    font-size: 16px;
    margin-bottom: 8px;
    transition: all 300ms ease-out;
    font-weight: 600;
}

.timeline-step:hover .timeline-title {
    color: var(--accent-green);
    transform: translateX(8px);
}

.timeline-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    transition: all 300ms ease-out;
}

.timeline-step:hover .timeline-text {
    color: var(--text-light);
    transform: translateX(8px);
}